使用 Twitterizer 存储 Twitter 访问令牌
我正在尝试将 Twitter 访问令牌存储到特定用户的数据库中,因此他不需要每次想要发布新推文时都批准该应用程序。
我可以使用 Twitterizer 轻松获取用户访问令牌,我得到的是 OAuthTokenResponse 对象。它由多个属性组成,但对于每个请求(例如发布推文),它都要求 OAuthTokenResponse 对象,因此看起来仅存储 Token 属性还不够?
存储此 AccessToken 的最佳方式是什么?谢谢!
I'm trying to store Twitter access token to my database for a specific user, so he doesn't need to approve the application every time he wants to post a new tweet.
I can easily get user access token using Twitterizer, and what I get is OAuthTokenResponse object. It consists of several properties, but for each request (eg. posting a tweet) it asks for OAuthTokenResponse object, so it looks like its not enough to store the Token property only?
What's the best way to store this AccessToken? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将
OAuthUtility.GetAccessToken
方法返回的 4 个属性存储在数据库中。所有授权的 API 调用都需要 OAuthTokens 对象。您需要做的就是实例化一个新对象,将属性设置为您拥有的值(消费者令牌和访问令牌),然后将实例传递给方法。例如:
或者,如果您使用的是 VB.NET:
You should store the 4 properties returned by the
OAuthUtility.GetAccessToken
method in your database. All authorized API calls require an OAuthTokens object. All you need to do is instantiate a new object, set the properties to the values you have (consumer token and access token), then pass your instance to the method.For example:
Or, if you're using VB.NET: