I integrated Venmo SDK and I'm facing an issue while sending payment. I have configured everything correctly. I click Pay via Venmo button -> App redirects -> Approve -> Comes back to Send Payment Screen. When I click Send payment I get an error "Invalid recipient (Please enter a valid phone, email, username, or Venmo user ID)"
I have checked the "sendPaymentTo" field which has the right phone number, correct amount and even a Note field.
(IBAction)sendAction:(id)sender {
void(^handler)(VENTransaction *, BOOL, NSError *) = ^(VENTransaction *transaction, BOOL success, NSError *error) {
if (error) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:error.localizedDescription
message:error.localizedRecoverySuggestion
delegate:self
cancelButtonTitle:nil
otherButtonTitles:@"OK", nil];
alertView.tapBlock = ^(UIAlertView *alertView, NSInteger buttonIndex) {
[alertView dismissWithClickedButtonIndex:buttonIndex animated:YES];
};
[alertView show];
}
else {
if ([self.delegate respondsToSelector:@selector(paymentSuccesfull:)]) {
[self.delegate paymentSuccesfull:transaction.transactionID];
}
[[Venmo sharedInstance] logout];
}
};
[[Venmo sharedInstance] sendPaymentTo:self.phoneNumber
amount:self.amountTextField.text.floatValue*100
note:self.noteTextField.text
completionHandler:handler];
}
This is actually a bug in the error messaging from the SDK. The real issue I believe is that you're sending an invalid amount (such as .01, the amount field is actually in cents already). I opened an issue here: https://github.com/venmo/venmo-ios-sdk/issues/47