即使在Twitter的API文檔中的代碼和例子是直線前進,但它是不容易弄清楚與Twitter API正確的代碼爲鳴叫的圖像。
要創建你需要做的是從Twitter應用程序:https://dev.twitter.com/
在Twitter上開發的網站,你必須指定名稱和您的應用程序解密加上網址到你的主頁和回調頁(更多這兩頁後面)。此外,您必須確保將您的Twitter應用程序設置爲「讀取和寫入」,以便授權其以用戶名義發佈圖片。
應用程序創建正確後,twitter會爲您提供一個「消費者密鑰」和「消費者機密」,您需要保留這兩個字符串變量,因爲它們需要在與Twitter API進行通信時識別您的應用程序圖片。 下載Twitter的代碼libraryDownload的必需PHP庫
Twitter的認證和圖片上傳到Twitter,你需要tmhOAuth.php和tmhUtilities.php你可以從https://github.com/opauth/twitter/tree/master/Vendor/tmhOAuth 如何鳴叫圖片代碼工作下載呢?
推特圖像的代碼分爲兩個文件,第一個是代碼開始的「start.php」,第二個文件是「callback.php」,twitter會在授權給我們的應用後將用戶重定向。 (我們的callback.php文件的URL在上述步驟中已經在App設置中更新) 代碼如何工作
i)在「start.php」中,我們要做的第一件事是要求臨時訪問令牌twitter API使用我們在創建應用程序時獲得的密鑰和祕密(此過程調用獲取請求令牌)。
$tmhOAuth = new tmhOAuth(array(
'consumer_key' => API_KEY,
'consumer_secret' => API_SEC,
'curl_ssl_verifypeer' => false
));
$tmhOAuth->request('POST', $tmhOAuth->url('oauth/request_token', ''));
$response = $tmhOAuth->extract_params($tmhOAuth->response["response"]);
ⅱ)。我們有臨時訪問令牌之後,我們需要將它們保存在cookie中供以後使用的用戶進行身份驗證我們的應用程序和重定向回
「callback.php」
$temp_token = $response['oauth_token'];
$temp_secret = $response['oauth_token_secret'];
$time = $_SERVER['REQUEST_TIME'];
setcookie("Temp_Token", $temp_token, $time + 3600 * 30, '/twitter_test/');
setcookie("Temp_Secret", $temp_secret, $time + 3600 * 30, '/twitter_test/'); setcookie("Tweet_Txt", $txt, $time + 3600 * 30, '/twitter_test/');
setcookie("Img_Url", $img, $time + 3600 * 30, '/twitter_test/');
III)之後。要求用戶授權我們的應用程序需要重定向到Twitter API頁面,其中用戶將填寫他的用戶名和密碼並完成授權過程。
$url = $tmhOAuth->url("oauth/authorize", "") . '?oauth_token=' . $temp_token;
header("Location:".$ url);
exit();
ⅳ)。當授權給我們的應用程序時,Twitter API會將用戶重定向到在應用程序設置中指定的「callback.php」URL。v))。在「callback.php」文件中存在推文圖像的實際代碼。首先,我們從cookie中檢索臨時訪問令牌,並使用正確的訪問令牌交換它們。
$token = $_COOKIE['Temp_Token'];
$secret = $_COOKIE['Temp_Secret'];
$img = $_COOKIE['Img_Url'];
$txt = $_COOKIE['Tweet_Txt'];
$tmhOAuth = new tmhOAuth(array(
'consumer_key' => API_KEY,
'consumer_secret' => API_SEC,
'user_token' => $token,
'user_secret' => $secret,
'curl_ssl_verifypeer' => false
));
$tmhOAuth->request("POST", $tmhOAuth->url("oauth/access_token", ""), array(
// pass the oauth_verifier received from Twitter
'oauth_verifier' => $_GET["oauth_verifier"]
));
$response = $tmhOAuth->extract_params($tmhOAuth->response["response"]);
$tmhOAuth->config["user_token"] = $response['oauth_token'];
$tmhOAuth->config["user_secret"] = $response['oauth_token_secret'];
VI)。獲得正確的訪問令牌後,我們會發送我們想要的圖片。
$img = './'.$img;
$code = $tmhOAuth->request('POST', 'https://api.twitter.com/1.1/statuses/update_with_media.json',
array(
'media[]' => "@{$img}",
'status' => "$txt"
),
true, // use auth
true // multipart
);
七)。從twitter API返回的代碼會告訴我們操作是否正確完成。
if ($code == 200){
echo '<h1>Your image tweet has been sent successfully</h1>';
}else{
tmhUtilities::pr($tmhOAuth->response['response']);
}
你知道,這是一個很好看的:http://stackoverflow.com/faq – George
謝謝大家的響應 –