首頁 >後端開發 >php教程 >如何使用 PHP 和 API v1.1 檢索使用者的 Twitter 時間軸?

如何使用 PHP 和 API v1.1 檢索使用者的 Twitter 時間軸?

Patricia Arquette
Patricia Arquette原創
2024-12-29 01:33:09218瀏覽

How to Retrieve a User's Twitter Timeline Using PHP and API v1.1?

使用Twitter API 版本1.1 檢索User_Timeline 的最簡單PHP 範例

由於Twitter API 1.0 於2013 年6 月11 日停用,提到的原始腳本不再起作用。本指南提供了一種以最少的編碼工作檢索最近使用者狀態的更新方法。

先決條件:

  1. 建立開發者帳號:註冊Twitter開發者帳號並建立應用程式取得API令牌。
  2. 調整存取等級: 將應用程式的存取等級變更為讀取和寫入。

PHP 程式碼

為了簡化任務,PHP 類別是提供:

require_once('TwitterAPIExchange.php');

// Replace these values with your application's tokens
$settings = [
    'oauth_access_token' => 'YOUR_ACCESS_TOKEN',
    'oauth_access_token_secret' => 'YOUR_ACCESS_TOKEN_SECRET',
    'consumer_key' => 'YOUR_CONSUMER_KEY',
    'consumer_secret' => 'YOUR_CONSUMER_SECRET'
];

// Define the API endpoint and request method
$url = 'https://api.twitter.com/1.1/statuses/user_timeline.json';
$requestMethod = 'GET';

// Create the TwitterAPIExchange instance
$twitter = new TwitterAPIExchange($settings);

// Build the request and perform it
echo $twitter->buildOauth($url, $requestMethod)->performRequest();

用法:

  1. 用法:
  2. 使用:
  3. 使用🎜>
將佔位符令牌值替換為從Twitter開發者平台取得的實際令牌。 執行 PHP 腳本,輸出將顯示經過驗證的 user_timeline(最近狀態)使用者。

以上是如何使用 PHP 和 API v1.1 檢索使用者的 Twitter 時間軸?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn