如何通过 Rails 应用程序发推文
我正在将 Twitter gem 用于公司网络应用程序,名为“Foobar”。我还有一个名为“Foobar”的 Twitter 帐户。我正在尝试从网络应用程序向我的 Foobar Twitter 帐户发送推文。
从自述文件中:
Twitter.configure do |config|
config.consumer_key = 'YOUR_CONSUMER_KEY'
config.consumer_secret = 'YOUR_CONSUMER_SECRET'
config.oauth_token = 'YOUR_OAUTH_TOKEN'
config.oauth_token_secret = 'YOUR_OAUTH_TOKEN_SECRET'
end
client = Twitter::Client.new
client.update('Hello, from Twitter Gem!')
我有consumer_key和consumer_secret。但是如何获取 oauth 令牌和 oauth 令牌秘密?
I am using the Twitter gem for a company web app, called 'Foobar'. I also have a Twitter account called 'Foobar'. I am trying to tweet onto my Foobar Twitter account from the web app.
From the readme docs:
Twitter.configure do |config|
config.consumer_key = 'YOUR_CONSUMER_KEY'
config.consumer_secret = 'YOUR_CONSUMER_SECRET'
config.oauth_token = 'YOUR_OAUTH_TOKEN'
config.oauth_token_secret = 'YOUR_OAUTH_TOKEN_SECRET'
end
client = Twitter::Client.new
client.update('Hello, from Twitter Gem!')
I have the consumer_key and consumer_secret. But how do I get the oauth token and oauth token secret?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
作为 Twitter 的开发人员,您必须创建一个新的应用程序。创建后您将获得令牌。
http://dev.twitter.com/apps/new
了解更多信息:
http://dev.twitter.com/pages/oauth_faq
You have to create a new application as a developer on twitter. You will get your token after you create it.
http://dev.twitter.com/apps/new
For more information:
http://dev.twitter.com/pages/oauth_faq
您必须在 https://dev.twitter.com 中创建应用程序
You have to create an application in https://dev.twitter.com