Reputation: 450
please some tell me that how can i get the twitter's retweet datewise this is how i am calling the api: https://api.twitter.com/1.1/statuses/retweets_of_me.json in the API Console of twitter. What are the parameters i can add more to the above url to get the data datewise, ex: on 7th oct its count is 10 on 8th is 5, etc. i can see any parameter for date here: https://dev.twitter.com/rest/reference/get/statuses/retweets_of_me
Upvotes: 0
Views: 655
Reputation: 4940
The API won't do this for you - you will have to code it yourself. The date of the retweet is in the "created_at" property.
Upvotes: 1