只是一个简单的问题。
我一直在网上寻找创建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
,因为我怀疑您希望它们直接回到您的应用程序中。