3

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"

これは JSAPI から REST への交換であるため、auth_verifier を取得できません。電話のために私がしなければならないことはありますか?

4

1 に答える 1

0

xoauth_oauth2_access_token をヘッダーとして渡すのではなく、クエリ パラメーターとして渡します。

于 2012-05-12T01:31:16.180 に答える