从 Google Identity Toolkit (Gitkit) 中删除用户帐户的推荐方法是什么?
What is the recommended way of deleting a user account from Google Identity Toolkit (Gitkit)?
我没有在文档中找到有关从 Gitkit 数据库中删除用户帐户的指南。我计划创建一些基于不同提供商的测试帐户以及一些基于密码的帐户。清除所有这些测试帐户的最佳方法是什么?
Google Identity Toolkit Java client library provides the deleteUser()删除个人用户账号方法:
GitkitClient gitkitClient = GitkitClient.newBuilder()
.setGoogleClientId("your-oauth2-web-client-id-at-Google")
.setServiceAccountEmail("your-service-account-email-at-Google-developer-console")
.setKeyStream(new FileInputStream("path-to-your-service-account-private-file"))
.build();
gitkitClient.deleteUser("test-user-id");
您可能想创建一个测试项目来尝试删除(和其他操作),因为删除的帐户无法恢复。
我没有在文档中找到有关从 Gitkit 数据库中删除用户帐户的指南。我计划创建一些基于不同提供商的测试帐户以及一些基于密码的帐户。清除所有这些测试帐户的最佳方法是什么?
Google Identity Toolkit Java client library provides the deleteUser()删除个人用户账号方法:
GitkitClient gitkitClient = GitkitClient.newBuilder()
.setGoogleClientId("your-oauth2-web-client-id-at-Google")
.setServiceAccountEmail("your-service-account-email-at-Google-developer-console")
.setKeyStream(new FileInputStream("path-to-your-service-account-private-file"))
.build();
gitkitClient.deleteUser("test-user-id");
您可能想创建一个测试项目来尝试删除(和其他操作),因为删除的帐户无法恢复。