如何通过 Rails 应用程序发推文

发布于 2024-11-05 06:30:54 字数 587 浏览 0 评论 0原文

我正在将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

输什么也不输骨气 2024-11-12 06:30:54

作为 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

幸福还没到 2024-11-12 06:30:54

您必须在 https://dev.twitter.com 中创建应用程序

  • 您必须提及应用程序名称、说明以及网站(如果有的话)。
  • 您将获得consumer_key和consumer_secret。
  • 确保您已根据应用程序的要求更改了访问级别。
  • 之后,单击同一页面中的创建访问令牌按钮。
  • 它将创建访问令牌和访问令牌机密。
  • 您应该使用访问令牌作为 oath_token 并使用访问令牌密钥作为 oath_token_secret 。

You have to create an application in https://dev.twitter.com

  • You have to mention the application name,Description and website if you have any.
  • You will get the consumer_key and consumer_secret.
  • Make sure that you have changed the access level as required to your application.
  • After that click the create access token button in the same page.
  • It will create the access token and access token secret.
  • You should use the access token as oath_token and access token secret as oath_token_secret..
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文