1
0
Fork 0
mirror of synced 2024-09-11 07:06:34 +12:00
appwrite/app/sdks/node/docs/examples/auth/confirm.md
2019-06-09 21:13:55 +03:00

12 lines
No EOL
202 B
Markdown

let sdk = new Appwrite();
sdk
;
let promise = sdk.auth.confirm('[USER_ID]', '[TOKEN]');
promise.then(function (response) {
console.log(response);
}, function (error) {
console.log(error);
});