Hello All,
I have a Twitter account @Aahidc. I want with API Search get my text tweet. I use this URL https://api.twitter.com/1.1/search/tweets.json?q=@AahidC, and my result is :
{ "statuses": [0] "search_metadata": { "completed_in": 0.009 "max_id": 706494629361770500 "max_id_str": "706494629361770497" "query": "%40AahidC" "refresh_url": "?since_id=706494629361770497&q=%40AahidC&include_entities=1" "count": 15 "since_id": 0 "since_id_str": "0" }- }
So I don’t have my text of my tweet. Someone can help my please?
You can retrieve your tweet with search api if you search for “AahidC” without @. “@AahidC” doesn’t occur in any tweets it seems, so you’re getting no results.
AahidC
To get tweets from a specific account, you can set the query to: “from:@AahidC”
from:@AahidC
Sorry for late, Thanks a lot IgorBrigadir