LinkedIn JS API令牌交换到REST令牌

时间:2012-05-11 12:41:28

标签: python linkedin

我正在使用Python python-oauth2。我在尝试交换我的令牌时收到错误。以下是代码片段:

consumer = oauth.Consumer(consumer_key, consumer_secret)

client = oauth.Client(consumer)

client.request(access_token_url, "POST", headers={'xoauth_oauth2_access_token':'XXXXXXXXXX'})
({'status': '400', 'content-length': '83', 'transfer-encoding': 'chunked', 'vary': 'Accept-Encoding', 'server': 'Apache-Coyote/1.1', '-content-encoding': 'gzip', 'date': 'Thu, 10 May 2012 22:28:38 GMT', 'nncoection': 'close', 'content-type': 'application/x-www-form-urlencoded;charset=UTF-8', 'www-authenticate': 'OAuth realm="https%3A%2F%2Fapi.linkedin.com", oauth_problem="parameter_absent", oauth_parameters_absent="oauth_token%26oauth_verifier"'}, 'oauth_problem=parameter_absent&oauth_parameters_absent=oauth_token%26oauth_verifier')

收到400回复说:

oauth_problem="parameter_absent", oauth_parameters_absent="oauth_token%26oauth_verifier"

我无法获得auth_verifier,因为这是一个JSAPI到REST的交换。我应该为这次电话做些什么不同的事情吗?

1 个答案:

答案 0 :(得分:0)

您不会将xoauth_oauth2_access_token作为标题传递,而是传递查询参数。