Please provide the following details too when asking for help in this category:
-
SDK Version: 1.2
-
Screenshots of error:
-
Related to Custom Authentication? Please provide the following info too: (Optional)
- Verifier Name:
- JWKS Endpoint:
- Sample idToken(JWT)
Please provide the Web3Auth initialization and login code snippet below:
public void Awake()
{
this.initParams = new Dictionary<string, object>();
this.initParams["clientId"] = clientId;
this.initParams["network"] = network.ToString().ToLower();
if (!string.IsNullOrEmpty(redirectUri))
this.initParams["redirectUrl"] = redirectUri;
Application.deepLinkActivated += onDeepLinkActivated;
Debug.Log("Application.absoluteURL is " + Application.absoluteURL);
if (!string.IsNullOrEmpty(Application.absoluteURL))
onDeepLinkActivated(Application.absoluteURL);
#if UNITY_EDITOR
Web3AuthSDK.Editor.Web3AuthDebug.onURLRecieved += (Uri url) =>
{
Debug.Log("Web3AuthSDK.Editor.Web3AuthDebug.onURLRecieved url is " + url);
this.setResultUrl(url);
};
#endif
}