Complete the code to identify the OAuth provider used for social login.
provider = "[1]"
The provider variable should be set to the name of the OAuth service you want to use, such as "Facebook".
Complete the code to specify the OAuth redirect URI after login.
redirect_uri = "[1]"
The redirect URI is the URL where the user is sent after successful OAuth login, usually a callback endpoint.
Fix the error in the OAuth scope setting to request user email access.
scope = "[1]"
The scope must include "email" to request access to the user's email address during OAuth login.
Fill both blanks to complete the OAuth authorization URL with client ID and response type.
auth_url = "https://oauth.example.com/auth?client_id=[1]&response_type=[2]"
The client_id is a unique identifier for your app, and response_type 'code' is used to get an authorization code in OAuth.
Fill all three blanks to create a dictionary with user info keys and values after OAuth login.
user_info = {"[1]": "[2]", "[3]": "user@example.com"}The dictionary keys 'name' and 'email' hold the user's full name and email address respectively after OAuth login.