3

これは、Stripe API の curl メソッドからの curl リクエストです。

curl https://api.stripe.com/v1/accounts \
   -u sk_test_**********: \
   -d managed=false \
   -d country=US \
   -d email="bob@example.com"

今、私はこの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
        ); ?>

Stripe の返品方法が間違っています。-uカールのパラメータだと思います。

4

1 に答える 1

0

についてはよくわかりませんUnirest-uヘッダーの問題に直面しているため、以下のように URL 内で認証パラメーターを使用できます。

https://sk_test_RxRTXF1CDHuRw3ZUdynxnG6P:@api.stripe.com/v1/accounts
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
于 2016-02-10T10:32:27.403 に答える