我正在使用this shopify api code。我設法讓我的應用程序安裝,但現在當我嘗試建立一個收費我的應用程序時,我打這個電話我得到這個錯誤:laravel-shopify-API-wrapper:通過收費購物
Exception in api.php line 512:
ERROR #3: <url> malformed
這是我的代碼:
$charge_params = array (
'recurring_application_charge' => array (
'name' => 'Name Of Charge',
'price' => 10,
'return_url' => 'https://dev.shopify.com/show_products/', // also tried escaping the url so https:\/\/dev.shopify.com\/show_products\/
'test' => true
)
);
$charge = $sh->call(['URL' => '/admin/recurring_application_charges.json', 'METHOD' => 'GET', 'DATA' => ['charge_params' => $charge_params]], false);
任何人都可以看到我做錯了什麼?我懷疑它可能是$charge_params
被傳入的方式。沒有關於如何通過我可以看到的收費數據傳遞的文檔。
只是想你的數據結構爲充一部分,但沒有運氣很遺憾。好主意,但無論如何感謝。 – user1532669