Hey team,
i am following the step 3 from below guide to generate the refresh token:
but i don't see the page/url after i run 'authenticate_in_standalone_application.py'. so i'd like to check if i don't do correctly on the path of the json file:
-----
import argparse
from google_auth_oauthlib.flow import InstalledAppFlow
def main(client_secrets_path, scopes):
flow = InstalledAppFlow.from_client_secrets_file(
'C:\Users\Desktop\client.json', scopes=scopes)
--------
could you help to let me know if anything wrong in the def part?
thanks,
Siqi