我正在使用 Rauth 请求 Beatport API
以下是我的代码的一部分
from rauth import OAuth1Service
beatport = OAuth1Service(
name='beatport',
consumer_key='xxxxxxxxxxxxxxxxxxxxxxxx',
consumer_secret='xxxxxxxxxxxxxxxxxxxxxxx',
request_token_url='https://oauth-api.beatport.com/identity/1/oauth/request-token',
access_token_url='https://oauth-api.beatport.com/identity/1/oauth/access-token',
authorize_url='https://oauth-api.beatport.com/identity/1/oauth/authorize',
base_url='https://oauth-api.beatport.com/json/catalog')
print beatport.get_raw_request_token()
request_token, request_token_secret = beatport.get_raw_request_token()
print beatport.get_raw_request_token()
打印响应 [405] 。我使用的消费者密钥和消费者秘密是正确且有效的。
我究竟做错了什么?