When trying to implement custom auth in React Native (bare workflow) using @toruslabs/customauth-react-native-sdk, safari page with "unable to find this page" message opens.
Initialisation:
CustomAuth.init({
redirectUri: deepLink,
network: "testnet",
enableLogging: true
});
Call:
const loginDetails = await CustomAuth.triggerLogin({
name: 'Cognito',
typeOfLogin: "jwt",
verifier,
clientId,
jwtParams:{
domain,
verifierIdField: "email",
id_token: awsToken
}
});
Originally posted by: zolottareva
Check the discussion at: https://github.com/orgs/Web3Auth/discussions/1258