我使用Stripe Checkout(条纹版本2016-07-06),由于要使用参数“ client_reference_id”,我想恢复个性化数据,但是在JSON中,当我有金额或电子邮件时,找不到该数据例。我正在测试环境中。你能帮我吗 ?预先谢谢你
$session = \Stripe\Checkout\Session::create([
'client_reference_id' =>'TEST',
'customer_email' => 'email@ovh.fr',
'payment_method_types' => ['card'],
'line_items' => [[
'name' => 'My purchase',
'amount' => '1000',
'currency' => 'eur',
'quantity' => 1,
]],
'success_url' => 'https://www.loremipsum.fr',
'cancel_url' => 'https://www.loremipsum.fr',
]);