有没有办法阻止受保护的推文显示在我的 Twitter 应用程序中?

发布于 2024-10-30 03:07:51 字数 170 浏览 3 评论 0原文

我有一个 Twitter 小应用程序,如果用户在我的应用程序中以特定格式输入推文,它就会显示用户的推文。

但是,即使 Twitter 用户保护了他/她的推文,这些推文仍然会显示在我的应用程序中。是否有一个标志或某些参数可供我检查用户以查看他/她是否保护了他们的推文,并且不显示这些推文?

谢谢。

I've a little Twitter app that displays a user's tweets if they enter them in a specific format from within my app.

However, even if the Twitter user has protected his/her tweets, those tweets are still being displayed in my app. Is there a flag or some parameter that I could check about the user to see if s/he has protected their tweets, and not display those tweets?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦罢 2024-11-06 03:07:51

返回的推文有一个“受保护”变量,您可以使用该变量。

json: { "user": { "protected": false } }

xml: <user><protected>false</protected><user>

如果我的答案不太清楚,您可以查看页面底部的示例:

http ://dev.twitter.com/doc/get/statuses/home_timeline

Returned tweet has a "protected" variable, you can use that one.

json: { "user": { "protected": false } }

xml: <user><protected>false</protected><user>

You can check the examples at the bottom of the page if my answer isn't that clear:

http://dev.twitter.com/doc/get/statuses/home_timeline

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