-
Notifications
You must be signed in to change notification settings - Fork 9
Explore ad data
When you see an ad on Twitter, or when you interact with it, it is registred.
Twitter keeps up to 90 days of ad-related data linked to your account in your archive.
In twitter-archive-reader
, ad data is stored in archive.ads
, with archive
an instance of TwitterArchive
.
-
.impressions: AdImpression[]
: Collected data about ads viewed by archive owner. -
.engagements: AdEngagement[]
: Collected data about ads archive owner have interacted with. -
.mobile_conversions: AdMobileConversion[]
: Mobile application events associated with archive owner account in the last 90 days which are attributable to a Promoted Tweet engagement on Twitter. Ads which archive owner might have seen on mobile app and "converted" to real action: For example: Installed an application, used an app targeted by a ad... -
.online_conversions: AdOnlineConversion[]
: All online (website) activities associated with archive owner account in the last 90 days via advertiser website integrations which are attributable to a Promoted Tweet engagement on Twitter. Ads which archive owner might have seen on desktop website and "converted" to real action: For example: Clicked on the ad and see a webpage... -
.impressions_by_location: { [location: string]: AdImpression[] }
: Impressions by display location (where archive owner seen it on Twitter environnement: Timeline, profile...) -
.impressions_by_advertiser: { [advertiser: string]: AdImpression[] }
: Impressions by advertiser screen name (with @ in it). Real advertiser name can be obtains withimpression.advertiserInfo.advertiserName
. -
.impressions_by_engagement_type: { [engagementType: string]: AdImpression[] }
: All impressions linked to an engagement, sorted by engagement types. A single impression can have multiple engagement types.
At many places inside arrays and objects, you will find date-related properties.
Those props are badly formatted and can not be parsed by Date
in all cases.
You can use static method TwitterHelpers.parseAdDate(date: string)
to have a correct date.
- Direct Messages