离线模式下 POSTtoTwitter(无需用户密码)
我已经使用 Twiter 验证了用户身份。它返回用户详细信息,
但我想在离线模式下仅使用用户名或 ID 发布到 Twitter。
任何人都可以帮助我吗:)
i have authenticated user with Twiter .which return user detail's
But i want to posttoTwitter with just username or id in offline mode.
Can any help me in this :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅使用用户名无法在 Twitter 上发帖。
从 API 角度来看,如果您拥有他们的用户名和密码,甚至无法向 Twitter 发帖。想要与 Twitter 通信的 API 应用程序需要使用 Twitter 的 OAuth 实现。
Twitter OAuth 常见问题解答是一个很好的起点。或者,您可以使用其他人编写的库来为您完成繁重的工作。
It is not possible to post to Twitter with only their username.
From an API pserspective, it's not even possible to post to Twitter if you have their username AND their password. API applications that want to communicate with Twitter need to use Twitter's implementation of OAuth.
A good starting point is the Twitter OAuth FAQ. Or, you could use a library that someone else has written to do the heavy lifting for you.