我有以下函数,它排除了4个字段。我需要将这些值发布到Paypal并完成交易
string PostToPayPalMethod (string card_n,string pass, string cvc, string amount) {
// Now i need to post these value to paypal
return "success";
}
用户将通过我们的web界面输入他/她的卡详细信息(card_n
、pass
、cvc
),我将把它传递给PostToPayPalMethod
以完成交易。
我在看经典的API,但它引导客户首先登录到贝宝完成交易。
有人能指示我完成这项任务吗。
我建议使用PayPal提供的新REST api-此处提供的文档:https://developer.paypal.com/webapps/developer/docs/api/
你可以使用API进行信用卡支付,尽管我认为你需要收集更多的信息。