In my app I'm integrating OAuth2.0 library for vimeo upload. I'm getting error as invalid redirect uri after user log into his account. My code,
self.oauthClient = [[LROAuth2Client alloc] initWithClientID:@"**** client ID ****" secret:@" * secret * " redirectURL:[NSURL URLWithString:@"testMyApp://oauth"]];
In the plist i have given "testMyApp" as string in url schemes.
is this the right way to specify redirect uri? please help!