Auth0サインアップ方法を実装して新しいユーザーを電子メールとパスワードで登録する方法を知っている人はいますか?
これは私がこれまでに持っているものですが、行き詰まっています。Auth0 の Web サイトにある「カスタム サインアップ」コードがわかりません。ご協力ありがとうございました!
private Auth0.SDK.Auth0Client client = new Auth0.SDK.Auth0Client (
"Test.auth0.com",
"bCJ1dfsnvGIsY0ixfQg2jg6jAtgNU656");
string email = "blah@gmail.com";
string password = "blah";
string connection = "Username-Password-Authentication";
var user = await client.LoginAsync(
connection: connection,
userName: email,
password: password,
withRefreshToken: false,
scope: "openid");