當前位置: 首頁>>代碼示例>>PHP>>正文


PHP TwitterOAuth::OAuthRequest方法代碼示例

本文整理匯總了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);
                    }
開發者ID:ryosuke89,項目名稱:SNS_picture_analysis,代碼行數:31,代碼來源:twitter.php


注:本文中的Abraham\TwitterOAuth\TwitterOAuth::OAuthRequest方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。