1

我一直在为 Charges API 调用使用 Expand 参数,它工作正常。

但是当我将 Expand 参数与事件调用一起使用时,它给出了错误。我想扩展InvoiceID 对象。

以下是网址:

https://api.stripe.com/v1/events?type=charge.*&count=100&expand[]=data.invoice'

以下是错误消息:

[type] => invalid_request_error
[message] => This property cannot be expanded (data.invoice).

我也试图改变价值invoicedata.data.invoice但没有成功。

我怎样才能让它工作?我错过了什么吗?

谢谢,

4

1 回答 1

1

Event objects can't be expanded, so you'll need to retrieve those invoices individually.

于 2013-04-08T09:44:54.863 回答