2016-02-10 149 views
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

回答

0

我對Unirest沒有太多的想法。由於您面臨-u標題的問題,因此您可以使用url內的授權參數如下。

https://sk_test_RxRTXF1CDHuRw3ZUdynxnG6P:@api.stripe.com/v1/accounts 
     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 
+0

不工作,感謝您的幫助,任何其他方式? – Emily

+0

從您的代碼中移除header'「Content-Type」=>「application/json」'。你沒有在那裏傳球。 –

+0

但是什麼參數是-u sk_test_ASX21312FCA? – Emily