如何使用 Twitter API 关注某人
我检查了其他一些类似的问题,但其中一些是旧的,而我对其余的 api 太新了。所以它来了。我有我的帐户密码,我有我的用户名,我有我想要关注的人的用户名。我想使用这些信息登录并关注该人。到目前为止,我发现这个过程是关于 OAuth 的,我需要在 twitter api 上使用 Friendships/create 。 (即: https://dev.twitter.com/docs/api /1/post/friendships/create )
问题是我不知道如何使用 OAuth 或 twitter api。在互联网上寻找了一些演示,但结果是空的,请给我一个关于如何使用这些演示的起点。
提前致谢。 (顺便说一句,如果重要的话,我将使用 PHP 进行处理)
I checked some other similar questions but some of them are old and i'm too new at api for the rest. So here it comes. I have my account's password, i have my username and i have a person's username who i want to follow. I want to login and follow that person with these information. So far i found out that process is about something called OAuth and i need to use friendships/create at twitter api. (which is : https://dev.twitter.com/docs/api/1/post/friendships/create )
The problem is hell i have no idea about using OAuth or that twitter api. Looked for some demos over internet but turned out empty, please give me a start point about how to use those.
Thanks in advance. (Btw, i will use PHP for process, if it matters)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里有一些很好的教程:
http://www.1stwebdesigner.com/tutorials/ twitter-app-oauth-php/
http://net.tutsplus.com/tutorials/ php/how-to-authenticate-users-with-twitter-oauth/
从技术上讲,您需要注册您的应用程序,然后只需使用 twitter 库来进行身份验证等(或者您可以编写您的自己的),然后使用库的函数使用从 twitter 获得的授权码发送您的请求
here are some good tutorials :
http://www.1stwebdesigner.com/tutorials/twitter-app-oauth-php/
http://net.tutsplus.com/tutorials/php/how-to-authenticate-users-with-twitter-oauth/
technically you would need to register your applications, and then simply use a twitter library to do the authentication etc (or you could write your own) and then use the library's functions to send your request with the auth code you get from twitter