diezo / Ensta

🔥 Fast & Reliable Python Package For Instagram API - 2024
https://bit.ly/ensta-discord
MIT License
355 stars 41 forks source link

Fix fb uploader #81

Closed ettoreleandrotognoli closed 7 months ago

ettoreleandrotognoli commented 7 months ago

The old way always generate with 000 at the end

[eleandro@fedora ~]$ python
Python 3.11.7 (main, Dec 18 2023, 00:00:00) [GCC 13.2.1 20231011 (Red Hat 13.2.1-4)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import time
>>> str(int(time.time()) * 1000)
'1707504381000'
>>> str(int(time.time()) * 1000)
'1707504382000'
>>> str(int(time.time()) * 1000)
'1707504382000'
>>> str(int(time.time()) * 1000)
'1707504383000'
>>> str(int(time.time()) * 1000)
'1707504383000'
>>>