Skip to content

SoundCloud

Damien edited this page May 27, 2016 · 1 revision
let soundcloud: Provider = .SoundCloud(
    clientID: "***",
    clientSecret: "***",
    redirectURL: "foo://callback"
)
Token
{
  "access_token": "04u7h-4cc355-70k3n",
  "scope": "*"
}
Scopes
"*"
Authorization Request Parameters
Parameter Type Description
client_id string The client id belonging to your application
redirect_uri string The redirect uri you have configured for your application
response_type enumeration (code, token)
scope string '*'
display string Can specify a value of 'popup' for mobile optimized screen
state string Any value included here will be appended to the redirect URI
Token Request Parameters
Parameter Type Description
client_id string The client id belonging to your application
client_secret string The client secret belonging to your application
redirect_uri string The redirect uri you have configured for your application
grant_type enumeration (authorization_code, refresh_token, password, client_credentials, oauth1_token)
code string The authorization code obtained when user is sent to redirect_uri
Clone this wiki locally