mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
468 B
468 B
import { Client, Account, OAuthProvider } from "react-native-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({ provider: OAuthProvider.Amazon, success: 'https://example.com', // optional failure: 'https://example.com', // optional scopes: [] // optional });