hborras / twitter-php-ads-sdk

A Twitter supported and maintained Ads API SDK for PHP.
55 stars 41 forks source link

Tweet details #102

Closed ssoftware closed 2 years ago

ssoftware commented 2 years ago

Hi All, can someone help me how to get details of a tweet based on the tweet id? For example, name, full_text fields.

I am looking for something very similar to the getPromotedTweets() method but could not find it. Thanks in advance!

ssoftware commented 2 years ago

Found a way to do it.

$params = ['tweet_type' => 'PUBLISHED', 'tweet_ids' => implode(',', $tweet_ids)]; $response = $account->getTwitterAds()->get('accounts/' . $ad_account . '/tweets', $params);