You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added rdio-ios-3.0.3 SDK,
As i am not using pods, i manually downloaded AFOAuth2Manager and AFNetworking in my project
replaced the initWithConsumerKey:@"" andSecret:@"" delegate:nil to initWithClientId:@"" andSecret:@"" delegate:nil with new client id and secret key,
and also replaced the callAPIMethod function [[AppDelegate rdioInstance] callAPIMethod:@"findUser" withParameters:params delegate:[RDAPIRequestDelegate delegateToTarget:self loadedAction:@selector(rdioRequest:didLoadData:) failedAction:@selector(rdioRequest:didFailWithError:)]]; to
But i am not able to get the response from any block, neither the success block nor the failure block.
Also had similar issue with callAPIMethod:@"getHeavyRotation" method too. Also getting this error in console Unable to fetch credential with identifier "services.rdio.com" (Error -25300).
The text was updated successfully, but these errors were encountered:
Previously i was using callApiMethod to get user detail in my application.
[[AppDelegate rdioInstance] callAPIMethod:@"findUser" withParameters:params delegate:[RDAPIRequestDelegate delegateToTarget:self loadedAction:@selector(rdioRequest:didLoadData:) failedAction:@selector(rdioRequest:didFailWithError:)]];
Since Rdio has suggested to use OAuth 2.0 i had followed the steps mentioned in the link http://www.rdio.com/developers/docs/guides/oauth2-migration/ for ios SDK
Added rdio-ios-3.0.3 SDK,
As i am not using pods, i manually downloaded AFOAuth2Manager and AFNetworking in my project
replaced the
initWithConsumerKey:@"" andSecret:@"" delegate:nil
toinitWithClientId:@"" andSecret:@"" delegate:nil
with new client id and secret key,and also replaced the callAPIMethod function
[[AppDelegate rdioInstance] callAPIMethod:@"findUser" withParameters:params delegate:[RDAPIRequestDelegate delegateToTarget:self loadedAction:@selector(rdioRequest:didLoadData:) failedAction:@selector(rdioRequest:didFailWithError:)]];
to[[AppDelegate rdioInstance] callAPIMethod:@"findUser" withParameters:params success:^(NSDictionary *result) { } failure:^(NSError *error) { }];
But i am not able to get the response from any block, neither the success block nor the failure block.
Also had similar issue with callAPIMethod:@"getHeavyRotation" method too. Also getting this error in console Unable to fetch credential with identifier "services.rdio.com" (Error -25300).
The text was updated successfully, but these errors were encountered: