I am trying to get the text for promoted tweets. From what i understand, For this i need to find the tweet_id of the promoted tweet and then make the REST API call.
However, my call for promoted tweets by Id does not work correctly and instead throws the list of all promoted tweets for the account.
resource = '/4/accounts/{account_id}/promoted_tweets'.format(account_id=account.id)
params = {'account_id':'1887vp',
'promoted_tweet_id': '23xk6v'}, #this is where promoted tweet ids will go
response = Request(client, 'get', resource, params=params).perform()
print (response.body['data'])
so instead of getting the reply only for this promoted tweet id, i get it for the whole account. What is the miss here?
@juanshishido @Outflink @imit8me