Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Auth0.Android でデータベース接続を使用する方法
login
Credentials
authentication .login("username@domain.com", "a secret password", "my-database-connection") .start(object: Callback<Credentials, AuthenticationException> { override fun onSuccess(payload: Credentials) { // ログインしました! } override fun onFailure(error: AuthenticationException) { // エラー! } })
openid profile email
signUp
authentication .signUp("username@domain.com", "a secret password", "my-database-connection") .start(object: Callback<Credentials, AuthenticationException> { override fun onSuccess(result: Credentials) { // サインアップ & ログイン完了! } override fun onFailure(error: AuthenticationException) { // エラー! } });