我已经在我的应用程序和使用开发人员仪表板启用未来付款许可.但还没有工作请找到错误 http://developer.paypal.com/并登录 https://developer.paypal.com/developer/accountStatus那里你可以看到你有什么许可.
$data = array(
"intent" => "authorize",
"payer" => array(
"payment_method" => "paypal"
),
"transactions" => array(
array("amount" => array(
"currency" => "USD",
"total" => "1.88"
),
"description" => "future of sauces")
));
$data_string = json_encode($data);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.sandbox.paypal.com/v1/payments/payment");
$headers = array(
'Content-Type: application/json',
'PayPal-Client-Metadata-Id: d6743cbb53ea4470a53bfe458f0cb885',
'Authorization: Bearer A103.B7d5318JDS6NA1zGh02avjCx16oxnBPadUat5z9SlGVGEiOhoAeMuqyz0anGSICS.FAkzECypTS1IXfemHcpVa5yyrGu',
);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
//curl_setopt($ch, CURLINFO_HEADER_OUT, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
$result = curl_exec($ch);
$information = curl_getinfo($ch);
curl_close($ch);
print_r($information);
die;
Run Code Online (Sandbox Code Playgroud)
出来这里
{"name":"PERMISSION_DENIED","message":"No …Run Code Online (Sandbox Code Playgroud)