使用 java 在 FusionAuth 中创建租户
Creating Tenant in FusionAuth with java
如何写代码用fusionAuthClient创建新的Tenant?
这样我就可以通过 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 中创建的其他租户复制配置参数。
我总是将 API 文档与客户端库结合使用。
https://fusionauth.io/docs/v1/tech/apis/tenants/#create-a-tenant
表示需要多个属性。
通过检索租户、调整值并创建新租户,您可能更容易复制现有租户。
如何写代码用fusionAuthClient创建新的Tenant? 这样我就可以通过 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 中创建的其他租户复制配置参数。
我总是将 API 文档与客户端库结合使用。
https://fusionauth.io/docs/v1/tech/apis/tenants/#create-a-tenant
表示需要多个属性。
通过检索租户、调整值并创建新租户,您可能更容易复制现有租户。