I get the response from Webite Rdio Login is following.
{"access_token"=>"AAAAAWEAAAAAAixfMQAAAIBV0whcVdOxHAAAABozdGR4enhoYTJmY3o1amh4M2Zzb3I3ZTJveWSLqxBFaLBE7vBxq0EtGKb0hYfhZVw4Q6aM4XhNEZCr", "token_type"=>"bearer", "expires_in"=>43200, "refresh_token"=>"AAAAAXIAAAAAAixfMQAAAIBV0whce2sOXAAAABozdGR4enhoYTJmY3o1amh4M2Zzb3I3ZTJveb0lZpsdV6olWeh_v5NdIWlEV2A3DqFXQFXyTVRbQwn3", "scope"=>"shared_playstate"}
HOW can i use this Response into my ios application for login user through access token method ?
What are the params for using this function "authorizeUsingAccessToken" ?
I research and got this
#import “AFOAuth2Manager.h”
AFOAuthCredential *accessToken = [AFOAuthCredential credentialWithOAuthToken:YOUR_ACCESS_TOKEN tokenType:kAFOAuthCodeGrantType];
[_rdio authorizeUsingAccessToken:accessToken];
But while using AFOauthCredential Request, WHAT is the "YOUR_ACCESS_TOKEN" format ?