如何启用条带动态重定向uri

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

我正在尝试创建条带集成。在条带应用程序中 - 我可以列出静态重定向 URI,但我需要动态重定向 URI。

https://docs.stripe.com/stripe-apps/api-authentication/oauth

示例-

"allowed_redirect_uris": [
    https://app/:id/friends/:fId/show
]

如果支持的话,我找不到任何相关文档。

stripe-payments
1个回答
0
投票

应用程序清单字段的路径要求,例如

allowed_redirect_uris
,在此处进行了描述。

简而言之,为了支持动态路径段(如

:id
),您可能需要重组您的应用程序/API,因为清单 URL 必须 包含子路径。使用您提供的示例,
https://app/
无效。但是
https://app/api/
是有效的并且将覆盖所有子路径。

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