Warning
You are viewing the technical documentation for Sharetribe. If you are looking for our no-code documentation, see our new help center.

Last updated

Enable Facebook login

In this how-to guide we'll take a look at the process of setting up Facebook login for your marketplace. It will allow your users to sign and log in by using their Facebook accounts.

Table of Contents

If you are working with one of our legacy templates and are not sure whether Facebook login is enabled, take a look at our legacy documentation.

Enabling Facebook login consists of three main steps:

  • Create a Facebook app Facebook app is what connects your marketplace to Facebook and let's Facebook know that users from your marketplace are allowed to authenticate themselves using the Facebook login.
  • Create an identity provider client in Sharetribe Console Identity provider (IdP) client is what let's Sharetribe know that the users of your marketplace are allowed to use the Facebook app you created to log into your marketplace.
  • Configure Sharetribe Web Template A few attributes from the Facebook app will need to be configured to your Sharetribe Web Template so that it can perform the login flow via Facebook.

Configure a Facebook app

First thing to do is to create a Facebook app for your marketplace. Create a Facebook app by following these steps:

  1. Go to https://developers.facebook.com/.
  2. Log in. In case you do not have a Facebook account you will need to sign up.
  3. Click on the "My Apps" dropdown in the top right corner of the header.
  4. Click "Create App". A popup asking "How are you using your app?" should appear.
  5. Choose the last option: "For Everything Else".
  6. Type your App Display Name. For example: "My Marketplace".
  7. Enter the contact email of your choice.
  8. Click "Create App ID". You may have to answer a security check.
  9. Don't select a Product or Recommended Product but instead in the left hand menu, click "Settings" then "Basic".
  10. In "App Domains", add all the domains from which you want the Facebook login to work, i.e. all your marketplace domains. Add the domains without any subdomain, for example www, so if your marketplace runs in https://www.example.com, add example.com.
  11. Scroll all the way to the bottom and click "+ Add Platform".
  12. Select "Website".
  13. In "Site URL", add your full marketplace's URL with https and possibly www or the subdomain, for example: https://www.example.com. Note that the Site URL needs to have the same domain that you added to App Domains, or one of them if you added many.
  14. You might also need to add your privacy policy URL (in some cases this is not needed). If so, please add it by typing the URL to your privacy policy into the "Privacy Policy URL" field. In Sharetribe Web Template, the policy is by default located in the /privacy-policy path, so the URL could then be https://www.example.com/privacy-policy.
  15. Click "Save Changes" at the bottom right.

Now your app basic setting should look like this:

Facebook app settings Facebook Website settings

  1. In the left hand menu, click "PRODUCTS +".
  2. Look up "Facebook Login" form the products list and click "Set up".
  3. Select "Web" (www) in the list of options.
  4. Verify that your "Site URL" is correct and click "Save" then "Continue".
  5. You can leave the 2nd step after setting the site URL as it is and in the left hand menu, click "Facebook Login" then "Settings".
  6. Under "Client OAuth Settings" check that the following settings are correct:
    • Client OAuth Login: Yes
    • Web OAuth Login: Yes
    • Force Web OAuth Reauthentication: No
    • Use Strict Mode for Redirect URIs: Yes
    • Enforce HTTPS: Yes
    • Embedded Browser OAuth Login: No
    • Login from devices: No
  7. In the "Valid OAuth redirect URIs" field add your marketplace address followed by /api/auth/facebook/callback, for example: https://www.example.com/api/auth/facebook/callback. This endpoint can be different if you have modified the /api endpoints in Sharetribe Web Template.

Your Facebook login settings should now look like this:

Facebook login settings

  1. Click "Save Changes".
  2. Your Facebook app is now ready for development. Note that while the app is in development mode only you and other app admins can use it to log in. When you are ready to take the app live, turn the top switch from "In development" to "Live" in the top bar. Confirm the choice when asked. You may have to select a category and/or answer a security check. Your app doesn't require an approval from Facebook so you don't have to go through the submission process. In the left hand menu, click "Dashboard". Your app should be public and a green dot should be displayed.

Your Facebook app is now created and configured. The next step is to set up an identity provider client in Sharetribe Console.

Configure an identity provider client in Console

Now that your Facebook app is all set up, a corresponding identity provider client will need to be configured for your marketplace. This will tell Sharetribe that your users will be allowed to log into your marketplace using the Facebook app you just created. The information stored in an IdP client is used to verify a token obtained from Facebook when a user logs in.

An identity provider client can be configure with the following steps:

  1. Go to Social logins & SSO in Console.
  2. Under Identity provider clients click "+ Add new".
  3. Set "Client name". This can be anything you choose, for example, "Facebook login". In case you need to create multiple Facebook apps, this will help you make a distinction between the corresponding IdP clients.
  4. Set the Client ID. This value is the App ID from your Facebook app. You can see the value under Settings > Basic in the Facebook app view.
  5. Set the Client secret. This value is the App secret in your Facebook app. You can see the value under Settings > Basic in the Facebook app view. You will need to authenticate to reveal the secret value.

The IdP client config should now look something like this:

Add identity provider client

  1. Click "Add client" and your identity provider client is ready.

Configure Sharetribe Web Template

Last step to enabling Facebook login is to configure your Sharetribe Web Template with the values that you used to add an identity provider client in Console. Add the following environment variables to your template:

  • REACT_APP_FACEBOOK_APP_ID The App ID of your Facebook app. Corresponds to client ID of the identity provider in Console.
  • FACEBOOK_APP_SECRET The App Secret of your Facebook app. Corresponds to client secret of the identity provider in Console.

For more information on the template environment variables, see the Template environment variables article.

That is it. Setting these environment variables will make Sharetribe Web Template render the Facebook login button in signup and login forms.