3
這是條紋API捲曲方法捲曲要求:轉換捲曲Unirest
curl https://api.stripe.com/v1/accounts \
-u sk_test_**********: \
-d managed=false \
-d country=US \
-d email="[email protected]"
現在我有這個unirest代碼:
<?php Unirest\Request::auth(Config::get("stripe.secret.api_key"), '');
$headers = array(
"Content-Type" => "application/json"
);
$body = array(
"managed" => $_managed,
"country" => $_country,
"email" => $_email,
);
$response = Unirest\Request::post("https://api.stripe.com/v1/accounts", $headers, $body);
return array(
'status' => 'success',
'message' => $response
); ?>
條紋收益的方法是錯誤的。我認爲它的捲曲參數爲-u
。
不工作,感謝您的幫助,任何其他方式? – Emily
從您的代碼中移除header'「Content-Type」=>「application/json」'。你沒有在那裏傳球。 –
但是什麼參數是-u sk_test_ASX21312FCA? – Emily