I have integrated Auth0 login before by using ‘WebAuthProvider.init()’ way, but now i have recived a URL from client, and they want to load google sign in page by calling that URL.
I have integrated Auth0 by using followig way.
WebAuthProvider.init(auth0)
.withScheme("com.aa.aa")
.withParameters(dataMap)
.withAudience(String.format("https:/aa/aa/aa",
"aaa")
.withConnection("google-oauth2")
.withScope("openid profile email offline_access read:current_user update:current_user_metadata")
.start(activity, webCallback);
Now i have recived following URL from client. I am unable to understand how to load following URL to launch Goole Sign in page by using Auth0.
https://abc-aa.eu.auth0.com/authorize?
audience=http%1%1f%aa.aa&
scope=profile+email+openid&
response_type=code&
client_id=aaaaaaaaa&
code_challenge=aaaaaaaaa&
code_challenge_method=S256&
redirect_uri=http%1%1f%aa.aalocalhost&
connection=google-oauth2