Replies: 1 comment
-
on Requestfetch("https://email.tkey.io/send_mail", {
"headers": {
"accept": "*/*",
"accept-language": "en-US,en;q=0.9",
"content-type": "application/json; charset=utf-8",
"sec-ch-ua": "\"Chromium\";v=\"112\", \"Google Chrome\";v=\"112\", \"Not:A-Brand\";v=\"99\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-platform": "\"macOS\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "cross-site"
},
"referrer": "https://app.openlogin.com/",
"referrerPolicy": "strict-origin-when-cross-origin",
"body": "{\"data\":\"...\",\"logo\":\"https://images.toruswallet.io/web3auth-logo-white.svg\",\"name\":\"Web3Auth\",\"email\":\"...\",\"baseUrl\":\"https://app.openlogin.com\",\"typeOfLogin\":\"Google\",\"network\":\"mainnet\",\"verifierId\":\"...\",\"language\":\"en\"}",
"method": "POST",
"mode": "cors",
"credentials": "omit"
}); Response
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I open the web3auth dialog with
mfaLevel: 'mandatory'
and am taken through the process as expected. I click [Set up 2FA] and follow the prompts to get to the Save Recovery Phrase screen. I enter my email address* and click Continue. The button gives me a visual that suggests it has been clicked, but the form does not submit.for what it's worth, logging in with
mfaLevel: none
works well<input type="email">
? this will prevent iOS from trying to 1) capitalize your email, and 2) auto-correct spelling.<meta name="viewport" content="width=device-width, initial-scale=1.0">
Beta Was this translation helpful? Give feedback.
All reactions