使用twitter api获取商业信息

时间:2013-10-21 12:57:52

标签: api twitter

我正在尝试使用其网站网址获取注册机构的商家信息。 我在很多方面搜索过。现在,我从github下载了Twitter API PHP SDK。 从以下链接

https://github.com/J7mbo/twitter-api-php

在我的index.php页面中,我已将代码更改为

$url = 'https://api.twitter.com/1.1/users/search.json';
$getfield = '?q=Twitter%20API';
$requestMethod = 'GET';
$twitter = new TwitterAPIExchange($settings);
echo $twitter->setGetfield($getfield)
             ->buildOauth($url, $requestMethod)
             ->performRequest();

但是,它在浏览器中给我一个空的结果。 请帮我从中得到一些结果。 提前谢谢!


我仍然没有找到任何答案。现在,我从github下载了Twitter API PHP SDK。 从以下链接

https://github.com/J7mbo/twitter-api-php

在我的index.php页面中,我已将代码更改为

$url = 'https://api.twitter.com/1.1/users/search.json';
$getfield = '?q=Twitter%20API';
$requestMethod = 'GET';
$twitter = new TwitterAPIExchange($settings);
echo $twitter->setGetfield($getfield)
             ->buildOauth($url, $requestMethod)
             ->performRequest();

但是,它在浏览器中给我一个空的结果。 请帮我从中得到一些结果。 提前谢谢!

1 个答案:

答案 0 :(得分:2)

您收到的错误消息会告诉您答案:

Twitter REST API v1不再有效。请迁移到API v1.1。

https://dev.twitter.com/docs/api/1.1/overview

使用当前的API而不是旧API。