删除 Twitter api 回调中的提及
我正在使用这个 json 脚本来获取我最新的推文。但我希望它在我“@reply”某人时删除推文。
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js">
</script>
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/myusername.json?callback=twitterCallback2&count=1&include_entities=false">
</script>
我追求“include_entities”,但这不起作用。 此处提供了一些更多信息供您参考。
i am using this json script to fetch my latest tweet. but i want it to remove the tweets when i "@reply" to someone.
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js">
</script>
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/myusername.json?callback=twitterCallback2&count=1&include_entities=false">
</script>
i went after the "include_entities" but that didn't work. here is some more info for your reference.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最直接的方法是检索时间线并删除以下位置的所有推文:
-“in_reply_to_status_id”包含非空白或非零值并且
- “用户”部分中的“id”标签是您的用户 ID。
The most straightforward approach will be to retrieve the timeline and remove any tweets where:
- The "in_reply_to_status_id" contains a non-blank or non-zero value AND
- The "id" tag in the "user" section is your user id.