feature/oauth #54

Merged
v4l3n71n merged 3 commits from feature/oauth into master 2025-03-01 20:49:13 +00:00
Showing only changes of commit 4669774cc3 - Show all commits

View File

@ -31,8 +31,8 @@ oauth.register(
oauth.register(
name="facebook",
client_id="FACEBOOK_CLIENT_ID",
client_secret="FACEBOOK_CLIENT_SECRET",
client_id=os.environ["FACEBOOK_CLIENT_ID"],
client_secret=os.environ["FACEBOOK_CLIENT_SECRET"],
authorize_url="https://www.facebook.com/v12.0/dialog/oauth",
access_token_url="https://graph.facebook.com/v12.0/oauth/access_token",
client_kwargs={"scope": "email public_profile"},