【发布时间】:2018-12-12 16:59:54
【问题描述】:
我无法在我的应用程序中创建客户帐户。我在条带文档 ID 上找到的代码:
Map<String, Object> accountParams = new HashMap<String, Object>();
accountParams.put("email", "example@mywyzer.com");
accountParams.put("country", "US");
accountParams.put("type", "custom");
Account account = Account.create(accountParams);
当我运行它时,它给出了这个错误:
“只有在您注册了您的平台后,您才能创建新帐户”
我无法创建帐户。
谁能告诉我使用stripe的整个流程?
我可能没有遵循这个流程。
【问题讨论】:
标签: java stripe-payments stripe-connect