I've got my soundcloud api ID but when I'm trying to log in with the user credentials(client id, secret, username,password) in python3 I get this:
401 Client Error: Unauthorized for url: https://api.soundcloud.com/oauth2/token
The only thing I'm doing in the code is this:
client = soundcloud.Client(client_id='YOUR_CLIENT_ID',
client_secret='YOUR_CLIENT_SECRET',
username='YOUR_USERNAME',
password='YOUR_PASSWORD')
What might be the problem? I didn't put any redirect uri in the registeration process of my app as I knew I was going to do the credentials authentication so might that be the problem? I really can't figure out what is going wrong here because that's straight from their API website!