已批准的PayPal SDK付款未显示在沙盒仪表板上

时间:2015-02-10 17:06:03

标签: ios sandbox paypal-sandbox paypal

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上使用我的仪表板时,我的交易页面上没有显示任何内容。

对我可能遗失或做错的任何想法?此时付款是否已完全验证,还是我必须在服务器上执行更多逻辑验证?在创建付款并在委托回调中获取其信息之前,我已经获得了承载访问令牌,但我不确定我应该如何处理此令牌。

谢谢,

1 个答案:

答案 0 :(得分:7)

好的,我意识到我做错了什么。

我之前使用过:

        PayPalMobile.preconnectWithEnvironment(PayPalEnvironmentNoNetwork)

但需要使用:

        PayPalMobile.preconnectWithEnvironment(PayPalEnvironmentSandbox)

希望这可以帮助其他人使用PayPal SDK for iOS。