需要帮助了解如何使用 Twitter 的 @anywhere isFollowing/isFollowedBy 方法
我正在尝试通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有使用 API 的经验,但看起来
是对的。
添加大括号可能会有所帮助,但您缺少一个来结束函数定义:
Not experienced with the API but it seems
would be right.
Adding a curly brace might help though, you're missing one to end the function definition: