1
0
Fork 0
mirror of synced 2024-07-03 05:31:38 +12:00
appwrite/docs/examples/javascript/auth/oauth.md

15 lines
233 B
Markdown
Raw Normal View History

2019-10-13 08:11:29 +13:00
let sdk = new Appwrite();
sdk
.setProject('')
;
2019-10-13 08:17:24 +13:00
/**
* Will redirect to relevant page
* depends on the operation result
*/
2019-10-13 08:11:29 +13:00
sdk.auth.oauth(
'facebook',
'http://example.com/success',
'http://example.com/failure'
2019-10-13 08:17:24 +13:00
);