本文整理汇总了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);
}