我正在使用Shopify CakePHP库,当我想创建定期付款时,我一直收到错误" Unprocessable Entity"。
这些部分出现错误:
// Create a new recurring charge
$charge = array
(
"recurring_application_charge"=>array
(
"price"=>1.0,
"name"=>"Super Duper Plan",
"return_url"=>"http://super-duper.shopifyapps.com",
"test"=>true
)
);
try
{
$recurring_application_charge = $sc->call('POST', '/admin/recurring_application_charges.json', $charge);
// API call limit helpers
echo $sc->callsMade(); // 2
echo $sc->callsLeft(); // 498
echo $sc->callLimit(); // 500
}
catch (ShopifyApiException $e)
{
debug($e->getMessage()); // Error
}
我收到的错误是数字 422 ,其中包含以下描述:请求格式正确但由于语义错误而无法遵循。 这意味着数组中的某些内容是错误的。你能告诉我这里可能出现什么问题吗?
注意 :$charge
部分是Shopify Billing API文档的复制/粘贴
谢谢!
答案 0 :(得分:0)
如果您正在使用https://github.com/isaacbowen/shopify-cakephp,为什么要手动构建和执行请求?您应该能够使用它创建的帮助程序,我在代码中看到了ShopifyRecurringApplicationCharge类。我绝对不是php专家,但我不确定你的请求是否会将你的有效负载正确编码为json吗?