How to create a client in omnipay-stripe

I am using Omnipay-stripe and I am trying to create a client with the following code:

        $gateway = Omnipay::create('Stripe');
    $gateway->setApiKey('sk_test_....');
    $token = $this->input->post('stripeToken'); // Code Igniter for $_POST['stripeToken']

    $customer = $gateway->createCard(array(
        "source" => $token,
        "description" => "Example Customer")
    );
    echo 'Customer: ';
    echo '<pre>';
    print_r($customer);
    echo '</pre>';

and I’m out of luck. I checked CreateCardRequest , and he says: "It doesn’t actually create a card, it creates a client."

My processed POST request from the API:

key: "pk_test_...."
payment_user_agent: "stripe.js/6a67cf0"
card:
number: "************4242"
cvc: "***"
exp_month: "12"
exp_year: "2017"

and my answer body:

id: tok_15v8exD17chNNDaoGMbDebAL
livemode: false
created: 1429889047
used: false
object: "token"
type: "card"
card:
id: card_15v8exD17chNNDao92nWH2rP
object: "card"
last4: "4242"
brand: "Visa"
funding: "credit"
exp_month: 12
exp_year: 2017
country: "US"
name: null
address_line1: null
address_line2: null
address_city: null
address_state: null
address_zip: null
address_country: null
cvc_check: "unchecked"
address_line1_check: null
address_zip_check: null
dynamic_last4: null
client_ip: "x.x.x.x"

Thank.

+4
source share
1 answer

Omnipay . Stripe , Stripe-API Omnipay, Omnipay ( , https://github.com/thephpleague/omnipay-stripe/issues/8).

, omnipay-stripe , , . API- non-Omnipay Omnipay .

+2

Source: https://habr.com/ru/post/1584522/


All Articles