Search.../

approveByToken( )

Approves a pending member using an approval token.

Description

The approveByToken() function returns a Promise that resolves to a session token when the specified member is approved. Tokens must be approved within 30 hours of token creation.

A new member's status is "PENDING" when the site's membership policy is set to manual approval. To learn more about setting your site's membership approval policy, see Editing Your Member Signup Settings.

Use the approvalToken parameter returned from the register() function when calling approveByToken().

Syntax

function approveByToken(token: string): Promise<string>

approveByToken Parameters

NAME
TYPE
DESCRIPTION
token
string

Approval token returned by the register() function.

Returns

Return Type:

Promise<string>

Related Content:

Was this helpful?

Approve a pending member using an approval token

This example contains a backend function that approves a pending member using an approval token. It returns a session token to be used in page code to log in the member who was just approved.

Copy Code
1import { authentication } from 'wix-members-backend';
2
3// Sample token value:
4// 'JWS.eyJraWQiOiJSc012MmV3MiIsImFsZyI6IkhTMjU2In0.eyJkYXRhIjoie1wiaWRcIjpcImEyMWE1MmU4LWViMzUtNDExYS04OTNkLWFlNTgxM2I1YjY2Y1wiLFwiY29sbGVjdGlvbklkXCI6XCI5YmVjNThlNi02NDExLTQ5OTEtOGU1ZC0wYWRhOTE4MmI5NWVcIn0iLCJpYXQiOjE2Mjc3NzkyNjYsImV4cCI6MTYyNzg4NzI2Nn0.53pZSaPInXrAvWpTOxsZxqxBHQIof1j6Gbkqg92l82o'
5
6export function myApproveByTokenFunction(token) {
7
8 return authentication.approveByToken(token)
9 .then((sessionToken) => {
10 return {
11 sessionToken: sessionToken,
12 approved: true
13 };
14 })
15 .catch( (error) => {
16 return {
17 approved: false,
18 reason: error
19 };
20 });
21}
22
23/* Promise resolves to:
24 * "JWS.eyJraWQiOiJQSXpvZGJiQiIsImFsZyI6IkhTMjU2In0.eyJkYXRhIjoie1wiaWRcIjpcImEyMWE1MmU4LWViMzUtNDExYS04OTNkLWFlNTgxM2I1YjY2Y1wiLFwiY29sbGVjdGlvbklkXCI6XCI5YmVjNThlNi02NDExLTQ5OTEtOGU1ZC0wYWRhOTE4MmI5NWVcIixcIm1ldGFTaXRlSWRcIjpcIjFmZjQ2YTk2LWRlYTYtNDlkYS04M2JhLTUxNjRmYjYyZDgzOVwiLFwib3duZXJcIjpmYWxzZSxcImNyZWF0aW9uVGltZVwiOjE2Mjc3Nzk0MTg5NzUsXCJleHBpcmVzSW5cIjoxMjA5NjAwMDAwLFwiZXhwaXJhdGlvblRpbWVcIjoxNjI3Nzc5NTM4OTc1LFwibGFzdFJlZnJlc2hlZFwiOjAsXCJhZG1pblwiOmZhbHNlfSIsImlhdCI6MTYyNzc3OTQxOH0.srXs33K5gT5KaZp4fTZ9xRkVasayOTox6IK2ZG3tKrA"
25 */
Register a member using a 3rd party for approval

This example demonstrates a common 3rd-party approval flow. The backend code calls a 3rd-party service that determines whether the member will be approved. If approved, the register() function is called, the registration is approved programmatically using the approveByToken() function, and a session token is returned to the calling page code. If rejected, the blockByEmail() function is called.

Copy Code
1/*******************************
2 * Backend code - register.jsw *
3 *******************************/
4import { authentication } from 'wix-members-backend';
5import { approveBy3rdParty } from 'backend/some-backend-module';
6
7export async function doRegistration(email, password, firstName, lastName) {
8
9 // Call a 3rd-party API to check if the member is approved.
10 const isApproved = await approveBy3rdParty(email, password);
11
12 // If member is approved by 3rd party, register and approve with the Wix site
13 if (isApproved === true) {
14 const options = {
15 contactInfo: {
16 firstName: firstName,
17 lastName: lastName
18 }
19 };
20
21 // Register the member
22 const registration = await authentication.register(email, password, options);
23 const approvalToken = registration.approvalToken;
24 console.log('Member is now registered with the site and pending approval');
25
26 // Approve the member and get session token, to be used to log in the member client-side
27 const sessionToken = await authentication.approveByToken(approvalToken);
28 console.log('Member is now approved, but not logged in');
29
30 return {
31 approved: true,
32 sessionToken: sessionToken
33 };
34
35 } else {
36 // If not approved by the 3rd party
37
38 await authentication.blockByEmail(email);
39 console.log('Member not approved by 3rd-party SSO. Blocking from Wix site.');
40
41 return { approved: false };
42 }
43}
44
45
46/*************
47 * Page code *
48 *************/
49import { authentication } from 'wix-members-frontend';
50import { doRegistration } from 'backend/register';
51
52// ...
53
54$w('#register').onClick(() => {
55
56 const email = $w('#email').value;
57 const password = $w('#password').value;
58 const firstName = $w('#firstName').value;
59 const lastName = $w('#lastName').value;
60
61 doRegistration(email, password, firstName, lastName)
62 .then((result) => {
63 if (result.approved) {
64 // Log the member in
65 console.log('Logging in...');
66 authentication.applySessionToken(result.sessionToken);
67 } else {
68 console.log('Not approved!');
69 }
70 });
71});
72
Register a user sending an email for confirmation

This example demonstrates a common email verification flow. A member is initially registered but not yet approved. At registration, a verification email is sent with a link to a verification page. When a member goes to the verification page, the approval is granted and the member is logged in to the site.

The code is split between three locations:

  • A backend web module named register.jsw.
  • The page code for the page where members register.
  • The page code for the page where members confirm their registration.

Copy Code
1/*******************************
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 wixLocationFrontend from 'wix-location-frontend';
72import { authentication } from 'wix-members-frontend';
73import { doApproval } from 'backend/register';
74
75$w.onReady(async () => {
76 // Get the token from the URL
77 const token = wixLocationFrontend.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});
90