Flutter Stripe如何创建Standard Connect帐户



只是一个简单的问题。

我一直在网上寻找创建Flutter标准连接帐户的支持,但我仍然遇到以下问题:

\在stripe.accountLink.create()方法的return_url字段中应该放什么?根据文件,它是:The URL that the user will be redirected to upon leaving or completing the linked flow.

但这是一个移动应用程序?所以我有点困惑我应该在那里放什么。

const accountLink = await stripe.accountLink.create({
account: account['id'],
type: 'account_oboarding',
refresh_url: '', // Here I have my https onRequest method
return_url: '', // <----- what should I put in here?
});

您可能想要使用Flutter的uni_links,因为我怀疑您希望它们直接回到您的应用程序中。

相关内容

  • 没有找到相关文章

最新更新