此链接是发布推文。 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公司?
答案 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);