我试图得到所有回复的推文,即对此推文的回复:
https://twitter.com/bbcworldservice/status/309345806123667456
我使用类似的东西工作:
https://api.twitter.com/1.1/statuses/mentions_timeline.json?count=100&since_id=309345806123667456
但是我已经发现这会返回所有最新的推文,而不是从此ID开始的所有推文。所以说这个用户提到的次数超过100次,不再包含对此推文的回复。渲染它没用。
有人可以帮忙吗?提供任何其他建议吗?
谢谢, 海伦
答案 0 :(得分:0)
几个月前我在工作中遇到了同样的问题,因为我之前在REST V1中使用了他们的related_tweets
端点。
所以我必须创建一个解决方法,我在这里已经记录了。 http://adriancrepaz.com/twitter_conversations_api
这门课应该完全符合你的要求。 它会抓取移动网站的HTML,并解析对话。我已经使用了一段时间,看起来非常可靠。
要获取对话......
请求强>
<?php
require_once 'acTwitterConversation.php';
$twitter = new acTwitterConversation;
$conversation = $twitter->fetchConversion(324215761998594048);
print_r($conversation);
?>
<强>响应强>
Array
(
[error] => false
[tweets] => Array
(
[0] => Array
(
[id] => 324214451756728320
[state] => before
[username] => facebook
[name] => Facebook
[content] => Facebook for iOS v6.0 ? Now with chat heads and stickers in private messages, and a more beautiful News Feed on iPad itunes.apple.com/us/app/faceboo?
[date] => 16 Apr
[images] => Array
(
[thumbnail] => https://pbs.twimg.com/profile_images/3513354941/24aaffa670e634a7da9a087bfa83abe6_normal.png
[large] => https://pbs.twimg.com/profile_images/3513354941/24aaffa670e634a7da9a087bfa83abe6.png
)
)
[1] => Array
(
[id] => 324214861728989184
[state] => before
[username] => michaelschultz
[name] => Michael Schultz
[content] => @facebook good April Fools joke Facebook?.chat hasn?t changed. No new features.
[date] => 16 Apr
[images] => Array
(
[thumbnail] => https://pbs.twimg.com/profile_images/414193649073668096/dbIUerA8_normal.jpeg
[large] => https://pbs.twimg.com/profile_images/414193649073668096/dbIUerA8.jpeg
)
)
....
)
)
希望它有所帮助, 阿德里安。