使用 Twitterizer 发布推文
我正在使用 twitterizer 将推文发布到用户的 Twitter 帐户。它工作正常,但它完全基于令牌(众所周知)。这在我的情况下不起作用,因为 Twitterizer 将用户重定向到用户登录的 Twitter 页面,然后使用 callbackurl 将控制权返回到我们的应用程序。
我的要求略有不同。我将用户的 Twitter 帐户凭据存储在我的数据库中,然后使用我想要发布推文的这些凭据。
这可能吗?所以,总而言之,我不希望用户离开我的网站。他们可以在我的申请表中配置他们的用户名和密码,然后我想获取这些凭据并发布推文。
I am using twitterizer for posting tweets to a user's twitter account. It works fine but it is fully based on tokens (as you all know). This doesn't work in my case because Twitterizer redirects the user to the twitter page where the user logs and then using callbackurl the control is returned to our application.
My requirements are slightly different. I am storing user's twitter's account credentials in my database and then using those credentials I want to post the tweet.
Is this possible? So, in summary I don't want user to leave my site. They can configure their username and password in my application form and then I want to pick up those credentials and post a tweet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不确定 Twitterizer,但我相信您可以在 twitter.com 注册您的应用程序,通过 OAuth 进行一次性身份验证,获取并存储身份验证令牌,并永久使用它。
我无法从经验或权威角度说话,但我相信将他们的凭据存储在您的数据库中可能违反 Twitter 的 TOS。
请参阅 Twitter 的 OAuth 常见问题解答。
Not sure about Twitterizer, but I believe you can register your app at twitter.com, do a one-time auth through OAuth, get and store the auth token, and use it permanently.
I can't speak from experience or authoritatively, but I believe storing their credentials in your DB is probably against Twitter's TOS.
See the OAuth FAQ for Twitter.
AFAIK,Twitter 现在已停止允许此类功能。唯一的连接方法是使用 twitter OAuth。
AFAIK, twitter has stopped allowing that kind of functionality now. The only way to connect is by making use of twitter OAuth.