Provider Guides
Facebook App
Only needed if you want Facebook login. Create one Facebook app and reuse it for the website and the Customer app.
1. Create the app
- developers.facebook.com โ My Apps โ Create App.
- Choose a type (Consumer / "Authenticate and request data from users").
- Add the "Facebook Login" product.
2. Get your credentials
3. Where the values go
https://your-domain.com/account/auth/facebook/callbackandroid/app/src/main/res/values/strings.xml โ App ID, Client Token, fb<APP_ID> scheme.ios/Runner/Info.plist โ FacebookAppID, FacebookClientToken, fb<APP_ID> URL scheme.4. Platform settings
- Android โ add your package name, default activity class, and key hashes (generate from your keystore).
- iOS โ add your bundle id.
- Web โ add your site URL and the Valid OAuth Redirect URI above.
# Android key hash (release) โ base64 of your keystore's SHA-1
keytool -exportcert -alias your-alias -keystore your-release.keystore | openssl sha1 -binary | openssl base64
๐
Related: Social Login ยท Customer App โ Firebase & Login.