File tree 2 files changed +10
-14
lines changed
2 files changed +10
-14
lines changed Original file line number Diff line number Diff line change 23
23
import argparse
24
24
25
25
26
- def main (project , launch_browser = True ):
26
+ def main (project ):
27
27
# [START bigquery_auth_user_flow]
28
28
from google_auth_oauthlib import flow
29
29
30
- # TODO: Uncomment the line below to set the `launch_browser` variable.
31
- # launch_browser = True
32
- #
33
- # The `launch_browser` boolean variable indicates if a local server is used
34
- # as the callback URL in the auth flow. A value of `True` is recommended,
35
- # but a local server does not work if accessing the application remotely,
36
- # such as over SSH or from a remote Jupyter notebook.
37
-
30
+ # A local server is used as the callback URL in the auth flow.
38
31
appflow = flow .InstalledAppFlow .from_client_secrets_file (
39
32
"client_secrets.json" , scopes = ["https://www.googleapis.com/auth/bigquery" ]
40
33
)
41
34
42
- if launch_browser :
43
- appflow .run_local_server ()
44
- else :
45
- appflow .run_console ()
35
+ # This launches a local server to be used as the callback URL in the desktop
36
+ # app auth flow. If you are accessing the application remotely, such as over
37
+ # SSH or a remote Jupyter notebook, this flow will not work. Use the
38
+ # `gcloud auth application-default login --no-browser` command or workload
39
+ # identity federation to get authentication tokens, instead.
40
+ #
41
+ appflow .run_local_server ()
46
42
47
43
credentials = appflow .credentials
48
44
# [END bigquery_auth_user_flow]
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ def mock_flow():
35
35
36
36
37
37
def test_auth_query_console (mock_flow , capsys ):
38
- main (PROJECT , launch_browser = False )
38
+ main (PROJECT )
39
39
out , _ = capsys .readouterr ()
40
40
# Fun fact: William P. Wood was the 1st director of the US Secret Service.
41
41
assert "William" in out
You can’t perform that action at this time.
0 commit comments