didCompletePayment委托方法确认我的付款状态已批准:
CurrencyCode: USD
Amount: 1.95
Short Description: avocado
Intent: sale
Processable: Already processed
Display: $1.95
Confirmation: {
client = {
environment = mock;
"paypal_sdk_version" = "2.8.3";
platform = iOS;
"product_name" = "PayPal iOS SDK";
};
response = {
"create_time" = "2015-02-10T16:17:43Z";
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)
然而,当我在Developer.PayPal.com上打开我的仪表板时,我的交易页面上什么都没有显示。
有没有想过我可能错过了什么或做错了什么?此时付款是否已完全验证,还是我必须在服务器上进行更多逻辑验证?在创建支付并在代理回调中获取其信息之前,我已经获得了承载访问令牌,但不确定该如何处理此令牌。
谢谢,
好吧,我意识到我做错了什么。
我以前使用过:
PayPalMobile.preconnectWithEnvironment(PayPalEnvironmentNoNetwork)
但需要使用:
PayPalMobile.preconnectWithEnvironment(PayPalEnvironmentSandbox)
希望这能帮助其他人使用iOS版的PayPal SDK。