Hi!
I’m trying to set up a member registration flow using the following code from the Wix Velo API reference page (https://www.wix.com/velo/reference/wix-members-backend/authentication/approvebytoken:
/*******************************
2 * Backend code - register.jsw *
3 *******************************/
4
5import { authentication } from 'wix-members-backend';
6import { triggeredEmails } from 'wix-crm-backend';
7
8// To be called from the registration page code
9export async function doRegistration(email, password, firstName, lastName) {
10 // Register the member
11 const registrationOptions = {
12 contactInfo: {
13 firstName: firstName,
14 lastName: lastName
15 }
16 };
17 const registration = await authentication.register(email, password, registrationOptions);
18 console.log('Member is now registered with the site and pending approval');
19
20 // Send a registration confirmation email
21 const emailOptions = {
22 variables: {
23 name: firstName,
24 verifyLink: `http://yourdomain.com/post-register?token=${registration.approvalToken}`
25 }
26 };
27 triggeredEmails.emailMember('verifyRegistration', registration.member.id, emailOptions);
28 console.log('Confirmation email sent');
29}
30
31// To be called from the post-registration page code
32export async function doApproval(token) {
33 try {
34 // Approve the member
35 const sessionToken = await authentication.approveByToken(token);
36 console.log('Member approved');
37 return {
38 approved: true,
39 sessionToken: sessionToken
40 };
41 } catch (error) {
42 // If an error is encountered and the member can't be approved
43 console.log('Member not approved');
44 return {
45 approved: false,
46 reason: error
47 };
48 }
49}
50
51/****************************
52 * Page code - registration *
53 ****************************/
54import { doRegistration } from 'backend/register';
55
56// ...
57
58const email = $w('#email').value;
59const password = $w('#password').value;
60const firstName = $w('#firstName').value;
61const lastName = $w('#lastName').value;
62
63doRegistration(email, password, firstName, lastName)
64 .then(() => {
65 console.log('Confirmation email sent.');
66 });
67
68/*********************************
69 * Page code - post-registration *
70 *********************************/
71import wixLocation from 'wix-location';
72import { authentication } from 'wix-members';
73import { doApproval } from 'backend/register';
74
75$w.onReady(async () => {
76 // Get the token from the URL
77 const token = wixLocation.query.token;
78
79 // Send token to backend code
80 const approval = await doApproval(token);
81
82 if (approval.approved === true) {
83 // Log the member in
84 authentication.applySessionToken(approval.sessionToken);
85 console.log('Member approved & logged in');
86 } else {
87 console.log('Member not approved');
88 }
89});
I’ve create a custom “Triggered Email” with the ID: ‘verifyRegistration’ (which matches the email-ID parameter in line: 27 of the code above), however once I try to test the registration flow (both on the deployed website and the website preview) I get the following message in the console:
What should I do?
Thank you in advance for you help