1

我正在使用 twitter-api-php-master 通过 twitter 搜索关键字,但返回 Null。真的不知道为什么会这样。

我的代码是这样的:

<?php

#### Include the class file ####

    require_once('TwitterAPIExchange.php');

#### Set access tokens ####

    $settings = array(
    'oauth_access_token' => "[something]",
    'oauth_access_token_secret' => "[something]",
    'consumer_key' => "[something]",
    'consumer_secret' => "[something]"
    );


$url = 'https://api.twitter.com/1.1/search/tweets.json';
$requestMethod = 'GET';

$getfield = '?q=test&geocode=37.781157,-122.398720,1mi&count=100';

$twitter = new TwitterAPIExchange($settings);
$response =  $twitter->setGetfield($getfield)
                 ->buildOauth($url, $requestMethod)
                 ->performRequest();
var_dump(json_decode($response));
?>

我几乎从https://github.com/J7mbo/twitter-api-php/wiki/Twitter-API-PHP-Wiki的示例中复制了这个。但结果只是空。有人知道是什么问题吗?

4

0 回答 0