I use the twitter API to get custom tweets on the home page. I am using json response format. Recently, the tweet identifier (in the API, it's just βidβ) was not reconfigured correctly. As an example
usually it should be returned as follows: "id": 14057503720, (example from the Twitter console) however, at my request, it returns as follows: "id": 1172601832
This is 1 digit less, and it is completely different. I need the correct identifier because I cannot use parameters like from_id or max_id.
source
share