venmo / venmo-ios-sdk

Make and accept payments in your iOS app via Venmo
MIT License
178 stars 57 forks source link

Authorize App hanging #56

Closed KathleenFMalone closed 9 years ago

KathleenFMalone commented 9 years ago

When I call requestPermissions method in my app I am transferred to my venmo app "Authorize App" view. But when I click on the Authorize or Deny button nothing happens. Venmo just hangs there.

This is the code I use in my app: [[Venmo sharedInstance] requestPermissions:@[VENPermissionMakePayments, VENPermissionAccessProfile] withCompletionHandler:^(BOOL success, NSError *error) { if (success) { // :) NSLog(@"permission granted"); } else { // :( NSLog(@"permission not granted"); } }];

eliperkins commented 9 years ago

Have you followed the setup steps mentioned in the README? It sounds like Venmo is trying to redirect back to your app, but your app isn't listening.

KathleenFMalone commented 9 years ago

Sorry, just saw I had a typo in the URL Schemes. All good now. Thanks for following up!

eliperkins commented 9 years ago

No worries! Glad you figured it out!