我的问题类似于这里的一个问题-Twitter search by hashtag example API v1.1。我已经尽可能地遵循了API和建议,但是我仍然对这个问题有些困惑,想知道是否有人可以发现我做错了什么:
<?php
require_once('twitter-api-php-master/TwitterAPIExchange.php');
$consumer_key = 'xxxx';
$consumer_secret = 'xxxx';
$oauth_access_token = 'xxxx';
$oauth_access_token_secret = 'xxxx';
// Your specific requirements
$url = 'https://api.twitter.com/1.1/search/tweets.json';
$requestMethod = 'GET';
$getfield = '?q=#baseball&result_type=recent';
// Perform the request
$twitter = new TwitterAPIExchange($settings);
echo $twitter->setGetfield($getfield)
->buildOauth($url, $requestMethod)
->performRequest();
?>
似乎没有过去-> buildOauth?并且没有向屏幕发送任何消息。你看到我跌倒了吗?