Stripe:如何通过API获取配置的API版本

问题描述 投票:0回答:1

Stripe 中是否有任何端点可以返回帐户中配置的当前 API 版本?

我需要它来检查帐户是否使用最新的 API 版本。

基本上,我获取了抓取页面的最新 Stripe API 版本的列表https://stripe.com/docs/upgrades

然后我想通过 API 连接到 Stripe 帐户,看看它是否使用最后抓取的 API 版本。

如果没有,我想计算一下账户中使用的 API 版本与 Stripe 发布的最后一个 API 版本之间有多少个新版本。

但是我需要一种方法来检索帐户中配置的 API 版本:有什么想法吗?

api stripe-payments
1个回答
2
投票

不幸的是,没有端点来查找正在使用的帐户的 API 版本。

如果您使用的是 Stripe Connect,那么只要您在请求中固定 API 版本并使用固定版本创建 Webhook 端点,任何连接帐户的默认版本都无关紧要。

如果您绝对需要帐户的 API 版本,找到它的唯一真正方法是查看 Stripe 仪表板:https://dashboard.stripe.com/test/developers

screenshot of dashboard.stripe.com/developers which is a stripe developer dashboard. the section 'API version' lists the Default/Current version, the Latest version, and option 'Upgrade available...' to open an upgrade dialog

© www.soinside.com 2019 - 2024. All rights reserved.