0
我能夠從linkedin授權API獲取oauth_token和oauth_token_secret。Linkedin授權問題
但是,我不確定如何使用它來生成調用任何linkedin API的「oauth2_access_token」參數。
使用標題:「授權:承載{access_token}」不起作用,並給出錯誤。
我能夠從linkedin授權API獲取oauth_token和oauth_token_secret。Linkedin授權問題
但是,我不確定如何使用它來生成調用任何linkedin API的「oauth2_access_token」參數。
使用標題:「授權:承載{access_token}」不起作用,並給出錯誤。
oauth_token
和oauth_token_secret
可以用於OAuth 1.0a流向LinkedIn的流量。您現在可以使用用戶發送到LinkedIn授權端點:
https://api.linkedin.com/uas/oauth/authorize?oauth_token=" . $oauth_token
如果你想利用OAuth的您需要按照所描述這裏一個不同的路徑2.0:https://developer.linkedin.com/docs/oauth2,你不會使用oauth_token
和oauth_token_secret
,而是消費者的關鍵和消費者的祕密。
好的。但是如果繼續使用Oauth 1.0,那麼我怎樣才能使用oauth_token和oauth_token_secret來調用任何linkedin api。例如。獲取成員資料。 – 2015-02-23 12:07:30