Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 449 Bytes

create-o-auth2token.md

File metadata and controls

15 lines (11 loc) · 449 Bytes

import { Client, Account, OAuthProvider } from "appwrite";

const client = new Client() .setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint .setProject('<YOUR_PROJECT_ID>'); // Your project ID

const account = new Account(client);

account.createOAuth2Token( OAuthProvider.Amazon, // provider 'https://example.com', // success (optional) 'https://example.com', // failure (optional) [] // scopes (optional) );