删除 Twitter api 回调中的提及

发布于 2024-11-07 10:13:05 字数 504 浏览 0 评论 0原文

我正在使用这个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

辞慾 2024-11-14 10:13:05

最直接的方法是检索时间线并删除以下位置的所有推文:
-“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文