i integrated the Paypal Mobile SDK for iOS in my App.
In the delegate Methode completePayment i get this json:
CurrencyCode: EUR
Amount: 39.95
Short Description: Michaels Test
Intent: sale
Processable: Already processed
Display: €39.95
Confirmation: {
client = {
environment = mock;
"paypal_sdk_version" = "2.12.3";
platform = iOS;
"product_name" = "PayPal iOS SDK";
};
response = {
"create_time" = "2015-10-29T13:18:02Z";
id = "PAY-NONETWORKPAYIDEXAMPLE123";
intent = sale;
state = approved;
};
"response_type" = payment;
}
Details: (null)
Shipping Address: (null)
Invoice Number: (null)
Custom: (null)
Soft Descriptor: (null)
BN code: (null)
It says successfully created. But when look at my dashboard in developer.paypal.com i can't see any transactions. For environment i use the paypal-sandbox.
In the documentation it says i have to use the rest-api to verify the immediate payment: https://developer.paypal.com/docs/integration/mobile/verify-mobile-payment/
So do i need a backendservice that verifies my payment that was created from the client or what do i have to do at this point?
Thx, Michael