spring在fusionauth中用java创建租户

rekjcdws  于 2021-07-23  发布在  Java
关注(0)|答案(1)|浏览(295)

如何编写代码用fusionauthclient创建新租户?这样我就可以用一个api调用创建一个新的租户。

Tenant  createTenant = new Tenant()
TenantRequest request = new TenantRequest(tenant);
        ClientResponse<TenantResponse, Errors> response = fusionAuthClient.createTenant(null, request);

我应该在tenant()中编写什么,我有.with()并试图配置它,但它一直抛出nullpointerexception。空指针异常处于启用状态 .with(tenant -> tenant.externalIdentifierConfiguration.changePasswordIdGenerator.type = SecureGeneratorType.randomBytes) 所需参数上有12个nullpointerexception。我试图从fusionauth中创建的其他租户复制配置参数。

s4n0splo

s4n0splo1#

我总是将api文档与客户机库结合使用。
https://fusionauth.io/docs/v1/tech/apis/tenants/#create-房客
指示需要多个属性。
通过检索租户、调整值并创建新的租户,复制现有租户可能会更容易。

相关问题