需要帮助了解如何使用 Twitter 的 @anywhere isFollowing/isFollowedBy 方法

发布于 2024-09-25 10:38:57 字数 587 浏览 5 评论 0原文

我正在尝试通过 Twitter Javascript Api(请参阅此处)检查登录用户是否在 Twitter 上关注我。如果没有,我将显示一个关注按钮。 现在我似乎无法找出命令 isFollowing/isFollowedBy 是如何工作的(参见文档)。

到目前为止的代码:

twttr.anywhere( function (T) {
    if(T.User.find('mashable').isFollowing){
        alert("Mashable is following current logged in User");
    }
);

还尝试过 .isFollowing().isFollowing('username').isFollowing().find('username') 以及更多其他选择。到目前为止没有任何效果。有人可以帮助我了解如何正确使用此方法吗?

提前致谢!

I am trying to check via the Twitter Javascript Api (see here) if a logged in user is following me on twitter. If not, i will display a followbutton.
Right now i can't seem to find out how the command isFollowing/isFollowedBy works (see doc).

Code so far:

twttr.anywhere( function (T) {
    if(T.User.find('mashable').isFollowing){
        alert("Mashable is following current logged in User");
    }
);

Have also tried .isFollowing(), .isFollowing('username'), .isFollowing().find('username') and many many more alternatives. Nothing works so far. Can someone help me find out how to properly use this Method?

Thanks in advance!

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

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

发布评论

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

评论(1

安静 2024-10-02 10:38:57

没有使用 API 的经验,但看起来

T.User.find('mashable').isFollowing() 

是对的。

添加大括号可能会有所帮助,但您缺少一个来结束函数定义:

twttr.anywhere( function (T) {
    if(T.User.find('mashable').isFollowing()){
        alert("Mashable is following current logged in User");
    }
});

Not experienced with the API but it seems

T.User.find('mashable').isFollowing() 

would be right.

Adding a curly brace might help though, you're missing one to end the function definition:

twttr.anywhere( function (T) {
    if(T.User.find('mashable').isFollowing()){
        alert("Mashable is following current logged in User");
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文