I am trying to implement a Soundcloud connection and have a weird problem.
The first thing I do is send my users to
https://soundcloud.com/connect?client_id=MY_CLIENT_ID&redirect_uri=http://myredirecturl.example.com&state=RANDOM_STRING&display=page&response_type=code&scope=email
When users connect, they are redirected to
http://myredirecturl.example.com?error=invalid_scope&error_description=The+requested+scope+is+invalid%2C+unknown%2C+or+malformed.&state=RANDOM_STRING
The same thing happens if I use scope=* .
However, if I use scope=non-expiring , it allows me to get through, but I need email for users, and there are not enough grants in this type of area.
I thought this was due to the fact that my application is in development mode, but Osman in Soundcloud said that it wasnโt .
Thanks.
source share