我通过以下程序获得了OAUTH_TOKEN。
import linkedin
from linkedin import linkedin
import oauth2 as oauth
import urlparse
import simplejson
import codecs
API_KEY = "my key"
API_SECRET = "my secret"
RETURN_URL = "https://www.my.com"
authentication = linkedin.LinkedInAuthentication(API_KEY, API_SECRET, RETURN_URL, linkedin.PERMISSIONS.enums.values())
print authentication.authorization_url # open this url on your browser
application = linkedin.LinkedInApplication(authentication)
authentication.authorization_code = 'my temporary code'
outh_code =authentication.get_access_token()
OAUTH_TOKEN = outh_code[0]
我成功获得了OAUTH_TOKEN,但是当我使用oauth.token()函数时,它同时请求OAUTH_TOKEN和OAUTH_TOKEN_SECRET作为其中的颜色。
我如何获得OAUTH_TOKEN_SECRET。我找不到任何有关此事的形式。谁能请帮忙。
此外,如果我不需要令牌密码,如何使用此令牌密码来获取任何人的基本个人资料信息?