ℌ𝔗 | 𝔇𝔞𝔪𝔦𝔞𝔫Original post
Web Developer
Hello! I have the following register function in React:
JavaScript
async function register(email, password, name) { await account.create(ID.unique(), email, password, name); await account.createVerification('http://localhost:3000/verify'); navigate('/login'); }The user is registered, but the verify email is somehow not send. I get the error: POST https://SECRET.de/v1/account/verification 401 (Unauthorized)
Summary
Developers are facing a 401 error when trying to send a verification email using Appwrite. The issue may be due to incorrect API credentials or missing authentication headers. Double-check the credentials and ensure they are correct.