I'm using Rauth for requests to the Beatport API
The following is a part of my code
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()
The print beatport.get_raw_request_token()
prints Response [405]. The consumer key and consumer secret i'm using are correct and valid.
What am I doing wrong?