0
我想我沒有正確地發送API所需的數據。任何想法我做錯了什麼?無法正確發佈數據到Chargify通過PHP cURL
$ch = curl_init("https://test.chargify.com/customers.json");
$data = array(
'first_name' => 'Test',
'last_name' => 'User',
'email' => '[email protected]'
);
$data = json_encode($data);
curl_setopt_array($ch, array(
CURLOPT_USERPWD => "yyyyyyyyyyyyyyy:x", // assume this is correct
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => $data,
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json',
'Content-Length: ' . strlen($data)
)
));
$output = curl_exec($ch);
curl_close($ch);
它返回
{
errors: [
"First name: cannot be blank.",
"Last name: cannot be blank.",
"Email address: cannot be blank."
]
}
下面是該API的文檔: http://docs.chargify.com/api-customers
新鮮眼中的力量!多謝,夥計。 –