Skip to content

Commit c5eee67

Browse files
busunkim96tswastgcf-owl-bot[bot]
authored andcommitted
samples: remove browser option from user credentials sample (googleapis#1147)
* samples: remove run_console from user credentials sample * Update samples/snippets/user_credentials.py Co-authored-by: Tim Swast <[email protected]> * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Tim Swast <[email protected]> Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent a7b8021 commit c5eee67

File tree

2 files changed

+10
-14
lines changed

2 files changed

+10
-14
lines changed

samples/snippets/user_credentials.py

+9-13
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,22 @@
2323
import argparse
2424

2525

26-
def main(project, launch_browser=True):
26+
def main(project):
2727
# [START bigquery_auth_user_flow]
2828
from google_auth_oauthlib import flow
2929

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.
3831
appflow = flow.InstalledAppFlow.from_client_secrets_file(
3932
"client_secrets.json", scopes=["https://www.googleapis.com/auth/bigquery"]
4033
)
4134

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()
4642

4743
credentials = appflow.credentials
4844
# [END bigquery_auth_user_flow]

samples/snippets/user_credentials_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def mock_flow():
3535

3636

3737
def test_auth_query_console(mock_flow, capsys):
38-
main(PROJECT, launch_browser=False)
38+
main(PROJECT)
3939
out, _ = capsys.readouterr()
4040
# Fun fact: William P. Wood was the 1st director of the US Secret Service.
4141
assert "William" in out

0 commit comments

Comments
 (0)