如何添加按钮以从 iPhone 应用程序关注应用程序所有者的 Twitter 帐户?
我正在开发一个应用程序,其中需要包含一个选项“在 Twitter 上共享”,单击该选项后应用程序的 itunes 地址会自动发送到用户的 Twitter 帐户(当然我接受用户的 ID 和密码)。我能够做到这一点。
现在我想添加一个“关注”按钮,单击该按钮将使用户能够自动关注应用程序所有者的 Twitter 帐户。
有人知道如何实现这一目标吗?提前致谢。
I'm developing an application in which I need to include an option "Share on Twitter " click upon which the application's itunes address is automatically twitted to the user's Twitter account(ofcourse I'm accepting user's id and password). I was able to do that.
Now I want to add a button "Follow" click upon which will enable user to follow the application owner's twitter account automatically.
Anybody having idea how to accomplish this? Thanx in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要调用
friendships/create< /code>
方法,其中包含您想要关注的人的 ID 或用户名。身份验证等应与您用于更新其状态的身份验证等相同。
You need to call the
friendships/create
method with the ID or username of the person you want to follow. The authentication etc should be the same as you're using to update their status.