File size: 740 Bytes
e6eb3cf
 
 
9064516
455aee0
e6eb3cf
2bf265a
5b90efe
455aee0
e6eb3cf
 
 
 
e5d147f
e6eb3cf
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from google.oauth2.credentials import Credentials
from googleapiclient.discovery import build
from google_auth_oauthlib.flow import InstalledAppFlow
import os
import json
# Define OAuth 2.0 scopes
SCOPES = os.getenv('Google_scopes')
config = os.getenv('Google_secret')
config = json.loads(config)
def auth():
    api_service_name = "drive"
    api_version = "v3"
    flow = InstalledAppFlow.from_client_config(config, scopes=SCOPES)
    credentials = flow.run_local_server(port=0)
    drive = build(api_service_name, api_version, credentials=credentials)
    drive.about().get(fields="user").execute()

    # Use the Drive API client to fetch user information
    user_info = drive.about().get(fields="user").execute()
    return user_info