BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
vendor
/
noweh
/
twitter-api-v2-php
/
src
📤 Upload
📝 New File
📁 New Folder
Close
Editing: Timeline.php
<?php namespace Noweh\TwitterApi; /** * Class Timeline Controller * @see <a href="https://developer.twitter.com/en/docs/twitter-api/tweets/timelines/api-reference">Tweet Timelines</a> * @author Julien Schmitt */ class Timeline extends AbstractController { /** * User mention timeline * Returns most recent Tweets mentioning a specified user ID * @param string $user_id * @return Timeline */ public function getRecentMentions(string $user_id): Timeline { $this->setEndpoint('users/' . $user_id . '/mentions'); return $this; } /** * User Tweet timeline * Returns most recent Tweets composed a specified user ID * @param string $user_id * @return Timeline */ public function getRecentTweets(string $user_id): Timeline { $this->setEndpoint('users/' . $user_id . '/tweets'); return $this; } /** * Reverse chronological timeline * Returns a collection of recent Tweets by you and users you follow. * @return Timeline * @throws \Exception */ public function getReverseChronological(): Timeline { if (property_exists($this, 'account_id')) { $this->setEndpoint('users/' . $this->account_id . '/timelines/reverse_chronological'); } else { throw new \Exception('Incomplete settings passed. Expected "account_id"'); } $this->setAuthMode(1); return $this; } /** * Retrieve Endpoint value and rebuilt it with the expected parameters * @return string the URL for the request. * @throws \Exception */ protected function constructEndpoint(): string { $endpoint = parent::constructEndpoint(); if (!is_null($this->next_page_token)) { $this->query_string['pagination_token'] = $this->next_page_token; $endpoint .= '?' . http_build_query($this->query_string); } $endpoint .= '?tweet.fields=article,attachments,author_id,card_uri,community_id,conversation_id,created_at,display_text_range,edit_controls,edit_history_tweet_ids,entities,id,lang,media_metadata,note_tweet,possibly_sensitive,public_metrics,reply_settings,scopes,source,text,withheld&expansions=article.cover_media,article.media_entities,attachments.media_keys,attachments.media_source_tweet,author_id,edit_history_tweet_ids&media.fields=alt_text,duration_ms,height,media_key,preview_image_url,public_metrics,type,url,variants,width&user.fields=affiliation,connection_status,created_at,description,entities,id,location,most_recent_tweet_id,name,pinned_tweet_id,profile_banner_url,profile_image_url,protected,public_metrics,receives_your_dm,subscription_type,url,username,verified,verified_type,withheld&place.fields=contained_within,country,country_code,full_name,id,name,place_type'; return $endpoint; } }
Save
Cancel