コード例 #1
0
def login(method):
    oauth_uri = auth_redirect_link(method)

    web_server = ClientRedirectServer(('localhost', PORT),
                                      ClientRedirectHandler)
    print(f'To sign in, use your browser and navigate to {oauth_uri}')
    webbrowser.open(oauth_uri, new=2)

    while True:
        web_server.handle_request()
        if 'code' in web_server.query_params:
            break
        elif 'error' in web_server.query_params:
            print('Authentication Error: "{}". Description: "{}" '.format(
                web_server.query_params['error'],
                web_server.query_params.get('error_description')),
                  file=sys.stderr)
            break

    try:
        auth_resp = CommaApi().post('v2/auth/',
                                    data={
                                        'code':
                                        web_server.query_params['code'],
                                        'provider':
                                        web_server.query_params['provider']
                                    })
        set_token(auth_resp['access_token'])
    except APIError as e:
        print(f'Authentication Error: {e}', file=sys.stderr)
コード例 #2
0
ファイル: auth.py プロジェクト: s70160/SH
def login():
  port = 9090
  redirect_uri, oauth_uri = auth_redirect_link(port)

  web_server = ClientRedirectServer(('localhost', port), ClientRedirectHandler)
  print(f'To sign in, use your browser and navigate to {oauth_uri}')
  webbrowser.open(oauth_uri, new=2)

  while True:
    web_server.handle_request()
    if 'code' in web_server.query_params:
      code = web_server.query_params['code']
      break
    elif 'error' in web_server.query_params:
      print('Authentication Error: "%s". Description: "%s" ' % (
        web_server.query_params['error'],
        web_server.query_params.get('error_description')), file=sys.stderr)
      break

  try:
    auth_resp = CommaApi().post('v2/auth/', data={'code': code, 'redirect_uri': redirect_uri})
    set_token(auth_resp['access_token'])
    print('Authenticated')
  except APIError as e:
    print(f'Authentication Error: {e}', file=sys.stderr)
コード例 #3
0
    except APIError as e:
        print(f'Authentication Error: {e}', file=sys.stderr)


if __name__ == '__main__':
    parser = argparse.ArgumentParser(description='Login to your comma account')
    parser.add_argument('method',
                        default='google',
                        const='google',
                        nargs='?',
                        choices=['google', 'apple', 'github', 'jwt'])
    parser.add_argument('jwt', nargs='?')

    args = parser.parse_args()
    if args.method == 'jwt':
        if args.jwt is None:
            print("method JWT selected, but no JWT was provided")
            exit(1)

        set_token(args.jwt)
    else:
        login(args.method)

    try:
        me = CommaApi(token=get_token()).get('/v1/me')
        print("Authenticated!")
        pprint.pprint(me)
    except UnauthorizedError:
        print("Got invalid JWT")
        exit(1)