Stripe Redirect URI - url 中的动态数字

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

我想在Stripe的重定向URI中设置UserId,我的URL像这样改变

www.mydomain.com/registration/1
www.mydomain.com/registration/2

我在重定向 URI 中设置了

www.mydomain.com/registration/
,它工作正常,但当 Stripe 在 URI 中看到该数字时会中断

我需要:使用this功能

将用户连接到Stripe
stripe-payments stripe-connect
2个回答
1
投票

您应该重定向到您网站上的一个页面。

该页面可以: a) 完成 oauth 流程,然后进行重定向,或者 b) 重定向到将完成 oauth 过程的页面


0
投票

您可以像这样在应用程序中使用 url:

<a 
  href={`https://dashboard.stripe.com/oauth/authorize?response_type=code&state=${profile?.id}&client_id=${process.env.NEXT_PUBLIC_STRIPE_OAUTH_CLIENT_ID}&scope=read_write&redirect_uri=localhost.com/business/verify`}
>  Connect with Stripe </a>
© www.soinside.com 2019 - 2024. All rights reserved.