本文整理匯總了PHP中Abraham\TwitterOAuth\TwitterOAuth::OAuthRequest方法的典型用法代碼示例。如果您正苦於以下問題:PHP TwitterOAuth::OAuthRequest方法的具體用法?PHP TwitterOAuth::OAuthRequest怎麽用?PHP TwitterOAuth::OAuthRequest使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Abraham\TwitterOAuth\TwitterOAuth
的用法示例。
在下文中一共展示了TwitterOAuth::OAuthRequest方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
}
//約1時間ごとに取得を繰り返す
for ($i = 0; $i < $repeat; $i++) {
//ツイート検索パラメータの設定
$params = array("q" => "filter:images since:2016-1-11 until:2016-1-12", "lang" => "ja", "count" => 50, "include_entities" => true, "result_type" => "recent");
//ツイートIDの指定を配列に追加
if ($confirm == false) {
$params += array("max_id" => $tweet_id . "100000000000");
}
//2回目以降は約1時間前のツイートIDにする
$tweet_id = $tweet_id - 15;
//リクエスト回數
$request_number = 1;
for ($j = 0; $j < $request_number; $j++) {
//検索結果の取得($tweets_objはJSONの検索結果が入る)
$tweets_obj = $connection->OAuthRequest('https://api.twitter.com/1.1/search/tweets.json', 'GET', $params);
if ($tweets_obj) {
//検索結果をjson_decodeで連想配列に変換
$tweets_arr = json_decode($tweets_obj, true);
//畫像のURLを取得
foreach ($tweets_arr['statuses'] as $statuses) {
if (isset($statuses['entities']['media'][0]['media_url'])) {
$photoURL = $statuses['entities']['media'][0]['media_url'];
//APIの日時に合わせる
date_default_timezone_set('Europe/London');
//投稿日時を取得
$postedDatetime = date('Y-m-d H:i:s', strtotime($tweets_arr['statuses'][0]['created_at']));
//DBに畫像のURLと投稿日時を追加
if ($db == true) {
$result = insert_photo($photoURL, $postedDatetime, $snsID);
}