mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 13:34:28 +08:00
120 lines
4.3 KiB
Plaintext
120 lines
4.3 KiB
Plaintext
---
|
|
id: auth-facebook
|
|
title: 'Login with Facebook'
|
|
description: Add Facebook OAuth to your Supabase project
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs'
|
|
import TabsPanel from '@theme/TabsPanel'
|
|
|
|
To enable Facebook Auth for your project, you need to set up a Facebook OAuth application and add the application credentials to your Supabase Dashboard.
|
|
|
|
## Overview
|
|
|
|
Setting up Facebook logins for your application consists of 3 parts:
|
|
|
|
- Create and configure a Facebook Application on the [Facebook Developers Site](https://developers.facebook.com)
|
|
- Add your Facebook keys to your [Supabase Project](https://supabase.com)
|
|
- Add the login code to your [Supabase JS Client App](https://github.com/supabase/supabase-js)
|
|
|
|
## Steps
|
|
|
|
### Access your Facebook Developer account
|
|
|
|
- Go to [developers.facebook.com](https://developers.facebook.com).
|
|
- Click on `Log In` at the top right to log in.
|
|
|
|

|
|
|
|
### Create a Facebook App
|
|
|
|
- Click on `My Apps` at the top right.
|
|
- Click `Create App` near the top right.
|
|
- Select your app type and click `Continue`.
|
|
- Fill in your app information, then click `Create App`.
|
|
- This should bring you to the screen: `Add Products to Your App`. (Alternatively you can click on `Add Product` in the left sidebar to get to this screen.)
|
|
|
|
### Find your callback URI
|
|
|
|
The next step requires a callback URI, which looks like this:
|
|
|
|
`https://<project-ref>.supabase.co/auth/v1/callback`
|
|
|
|
- Go to your [Supabase Project Dashboard](https://supabase.com).
|
|
- Click on the `Settings` icon at the bottom of the left sidebar.
|
|
- Click on `API` in the list.
|
|
- Under Config / URL you'll find your API URL, you can click `Copy` to copy it to the clipboard.
|
|
- Now just add `/auth/v1/callback` to the end of that to get your full `OAuth Redirect URI`.
|
|
|
|
<video width="99%" muted playsInline controls="true">
|
|
<source src="/docs/videos/api/api-url-and-key.mp4" type="video/mp4" muted playsInline />
|
|
</video>
|
|
|
|
### Set up FaceBook Login for your Facebook App
|
|
|
|
From the `Add Products to your App` screen:
|
|
|
|
- Click `Setup` under `Facebook Login`
|
|
- Skip the Quickstart screen, instead, in the left sidebar, click `Settings` under `Facebook Login`
|
|
- Enter your callback URI under `Valid OAuth Redirect URIs` on the `Facebook Login Settings` page
|
|
- Enter this in the `Valid OAuth Redirect URIs` box
|
|
- Click `Save Changes` at the bottom right
|
|
|
|
Be aware that you have to set the right access levels on your Facebook App to enable 3rd party applications to read the email address.
|
|
From the `App Review -> Permissions and Features` screen:
|
|
|
|
- Click the button `Request Advanced Access` on the right side of `public_profile` and `email`
|
|
|
|
You can read more about access levels [here](https://developers.facebook.com/docs/graph-api/overview/access-levels/)
|
|
|
|
### Copy your Facebook App ID and Secret
|
|
|
|
- Click `Settings / Basic` in the left sidebar
|
|
- Copy your App ID from the top of the `Basic Settings` page
|
|
- Under `App Secret` click `Show` then copy your secret
|
|
- Make sure all required fields are completed on this screen.
|
|
|
|
### Enter your Facebook App ID and Secret into your Supabase Project
|
|
|
|
- Go to your [Supabase Project Dashboard](https://supabase.com)
|
|
- In the left sidebar, click the `Authentication` icon (near the top)
|
|
- Click `Settings` from the list to go to the `Authentication Settings` page
|
|
- Enter the final (hosted) URL of your app under `Site URL` (this is important)
|
|
- Under `External OAuth Providers` turn `Facebook Enabled` to ON
|
|
- Enter your `Facebook client ID` and `Facebook secret` saved in the previous step
|
|
- Click `Save`
|
|
|
|
### Add login code to your client app
|
|
|
|
The JavaScript client code is documented here: [Supabase OAuth Client Code](/docs/reference/javascript/auth-signin#sign-in-using-third-party-providers)
|
|
|
|
```js
|
|
const { user, session, error } = await supabase.auth.signIn({
|
|
provider: 'facebook',
|
|
})
|
|
```
|
|
|
|
Add this function which you can call from a button, link, or UI element.
|
|
|
|
```js
|
|
async function signInWithFacebook() {
|
|
const { user, session, error } = await supabase.auth.signIn({
|
|
provider: 'facebook',
|
|
})
|
|
}
|
|
```
|
|
|
|
To log out:
|
|
|
|
```js
|
|
async function signout() {
|
|
const { error } = await supabase.auth.signOut()
|
|
}
|
|
```
|
|
|
|
## Resources
|
|
|
|
- [Supabase Account - Free Tier OK](https://supabase.com)
|
|
- [Supabase JS Client](https://github.com/supabase/supabase-js)
|
|
- [Facebook Developers Dashboard](https://developers.facebook.com/)
|