Twitter rest api“/1.1/statuses/home_timeline.json”返回空白

时间:2017-09-25 10:53:27

标签: swift twitter oauth timeline

此链接是发布推文。 https://dev.twitter.com/oauth/overview/authorizing-requests

我的应用程序是通过该链接发布的推文完成的。

但是https://dev.twitter.com/rest/reference/get/statuses/user_timeline

我编写了user_timeline。但我不能。

只需返回空白。

我的iPhone应用的OAuth已通过https://dev.twitter.com/oauth/overview/authorizing-requests链接正确验证。

为什么返回空白?

我该怎么办? User_timeline不需要OAuth吗?

我编程User_timeline应用了我的oauth,不是吗?

是否阻止了Twitter公司?

1 个答案:

答案 0 :(得分:1)

您可以使用https://github.com/jublonet/codebird-php/blob/develop/src/codebird.php中的codebird。

时间线信息是

$cb->setToken($_SESSION['oauth_token'], $_SESSION['oauth_token_secret']);

$reply = (array) $cb->statuses_homeTimeline();
print_r($reply);