3
我在我的rails項目中使用pengwynn linkedIn gem。我如何關注給定公司ID的公司。 我寫了下面的代碼,但它不工作。Pengwynn Gem:如何關注公司
client = LinkedIn::Client.new('consumer_key', 'consumer_secret')
rtoken = client.request_token.token
rsecret = client.request_token.secret
client.request_token.authorize_url
=> "https://api.linkedin.com/uas/oauth/authorize?oauth_token=<generated_token>"
client.authorize_from_request(rtoken, rsecret, pin)
client.company(:id => <company_id>).follow
任何想法,爲什麼它不工作或任何其他解決方案?
你能同時提供,當你在命令行中鍵入這些 – raju
IRB(主),你得到的迴應:093: 0> client.company(:id =>).follow => nil –
prateek