我想在js + php的litted localhost应用程序中阅读我自己的twit 我知道如何阅读api.twitter.com/1/statuses/user_timeline.json?screen_name=myName中的json,但由于我需要制作用户流的限制率(https://dev.twitter.com/docs/streaming-api/user-streams)
我通过创建开发帐户获得了4个密钥:
'consumer_key' => '*****',
'consumer_secret' => '*****',
'user_token' => '*******',
'user_secret' => '******',
所以我尝试使用此https://github.com/themattharris/tmhOAuth/blob/master/examples/userstream.php
为什么会这样?
答案 0 :(得分:1)
Streaming API不是 litte应用程序的正确工具您最好使用简单的REST API。
Streaming API应用程序不应该在浏览器中运行;不要忘记set_time_limit(0)
并在comandline中启动你的.php脚本 - 它将永远运行(你应该在数据库中保存推文,这样你的普通浏览器脚本就可以显示它们)