parameter_unknown created.gte 无法搜索

发布于 2025-01-11 11:44:27 字数 177 浏览 0 评论 0原文

“错误”: { "code": "参数未知", "doc_url": "https://stripe.com/docs/error-codes/parameter-unknown", "message": "收到未知参数:created.gte。您的意思是创建吗?", "param": "创建的.gte", “类型”:“无效请求错误” }

"error": {
"code": "parameter_unknown",
"doc_url": "https://stripe.com/docs/error-codes/parameter-unknown",
"message": "Received unknown parameter: created.gte. Did you mean created?",
"param": "created.gte",
"type": "invalid_request_error"
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

给妤﹃绝世温柔 2025-01-18 11:44:27

您必须将 created.gte 拆分为关联数组。这是原生 PHP Stripe 库的解决方案。它也会返回在 Laravel 中工作的上周的所有发票。

$stripeClient   = new StripeClient( $this->stripeKey ); 
$stripeClient->invoices->all([[ 'created' => ['gte' => (time() - 604800)] ]])->data

You have to split the created.gte into an associative array. Here is a solution for native PHP Stripe library. It returns all invoices for the last week it does work in Laravel as well.

$stripeClient   = new StripeClient( $this->stripeKey ); 
$stripeClient->invoices->all([[ 'created' => ['gte' => (time() - 604800)] ]])->data
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文