我正在尝试使用PHP从Stripe获取特定客户的发票清单。
以下是我正在使用的代码。
\Stripe\Stripe::setApiKey('STRIPE_SECRET_KEY');
$response = \Stripe\Invoice::all(array('customer' => 'CUSTOMER_TOKEN'));
但是这会返回空数组。
相反,CURL命令返回结果
curl https://api.stripe.com/v1/invoices?customer=CUSTOMER_TOKEN -u STRIPE_SECRET_KEY
有什么想法吗?
我正在使用Github提供的Stripe PHP library
。
答案 0 :(得分:1)
$response = \Stripe\Invoice::all(array('customer' => 'cus_id'));
您需要为特定客户添加客户ID。