目前我的 Rails 应用程序可以通过twitter
gem 发送推文,我想在我的推文中添加地理标记。地理位置是恒定的。我怎样才能做到这一点?
Twitter::Client.new.update('Hello, there!')
目前我的 Rails 应用程序可以通过twitter
gem 发送推文,我想在我的推文中添加地理标记。地理位置是恒定的。我怎样才能做到这一点?
Twitter::Client.new.update('Hello, there!')
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
# Initialize your Twitter client
client = Twitter::Client.new
# Post a status update
client.update("I just posted a status update via the Twitter Ruby Gem!", {:lat => 38.89859, :long => -77.035971})
用户必须在其设置中选中“向推文添加位置”选项(又名 geo_enabled)