Automated PayPal payments

落花浮王杯 提交于 2019-12-10 12:58:42

问题


I'm looking for a way to automatically send money from my PayPal account, to other PayPal accounts; via PHP. Is this possible?

Something like:

$recievers = array("client1@email.com" , "client2@email.com");

$myAccount = "me@email.com";
$myPassword = "letmein";
$amountToPay = 20.0; // $20 USD

foreach($recievers as $payee)
    sendMoney($myAccount, $myPassword, $payee, $amountToPay); //Is this possible?

回答1:


Yes this is possible.

You might want to look into Paypal's Mass Payment API.



来源:https://stackoverflow.com/questions/5372060/automated-paypal-payments

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!