Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any way to retrieve tweet activity using tweepy

Is there any way to retrive tweet activity (Impressions, Total engagements) of my own tweets by using tweepy (or maybe any other twitter library for python).

I'm using this simple code, but i couldn't found any way to retrive tweet activity:

import tweepy

auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)

api = tweepy.API(auth)
like image 526
user3588510 Avatar asked Jul 14 '16 08:07

user3588510


1 Answers

I am afraid this feature is available to the Engagement API which is only for Enterprise/Business accounts

The Engagement API provides access to Tweet impression and engagement metrics.

like image 136
Beppe C Avatar answered Nov 14 '22 23:11

Beppe C