Paypal Sandbox Do Direct Payment Internal Error 10001 Timeout Processing Request

后端 未结 4 2247
一生所求
一生所求 2021-02-14 16:16

This is in an MVC2 project, so I\'m using C# in ASP. This is what I\'m sending to https://api-3t.sandbox.paypal.com/nvp:

VERSION = 65.0
SIGNATURE = AFcWxV21C7fd0         


        
4条回答
  •  没有蜡笔的小新
    2021-02-14 17:17

    From what I've read around, this can be a sign of malformed data. In my case, I was sending the form as

    multipart/form-data
    

    instead of

    application/x-www-form-urlencoded
    

    I hadn't read anywhere in the docs about form encoding, but as soon as I changed it the PP server got a lot more friendly.

提交回复
热议问题