aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Loadholtes <nick@ironboundsoftware.com>2019-08-09 16:03:16 -0400
committerTres Seaver <tseaver@palladion.com>2019-08-09 16:03:16 -0400
commit6562b589835a403cbd665dfeebb5976ecf3fb730 (patch)
tree3e264333b2de680a35f8ca96e3beeac7f3bb22d0
parentc2936e120a113776b2f9ba9cb7c2658196b21c3e (diff)
downloadgoogle-api-python-client-6562b589835a403cbd665dfeebb5976ecf3fb730.tar.gz
Fix typo in filename used in 'docs/auth.md'. (#736)
-rw-r--r--docs/oauth.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/oauth.md b/docs/oauth.md
index 947c4ac9d..71874c968 100644
--- a/docs/oauth.md
+++ b/docs/oauth.md
@@ -33,7 +33,7 @@ The purpose of a `Flow` class is to acquire credentials that authorize your appl
### flow_from_clientsecrets()
-The [oauth2client.client.flow_from_clientsecrets()](http://oauth2client.readthedocs.org/en/latest/source/oauth2client.client.html#oauth2client.client.flow_from_clientsecrets) method creates a `Flow` object from a [client_secrets.json](client_secrets.md) file. This [JSON](http://www.json.org/) formatted file stores your client ID, client secret, and other OAuth 2.0 parameters.
+The [oauth2client.client.flow_from_clientsecrets()](http://oauth2client.readthedocs.org/en/latest/source/oauth2client.client.html#oauth2client.client.flow_from_clientsecrets) method creates a `Flow` object from a [client_secrets.json](client-secrets.md) file. This [JSON](http://www.json.org/) formatted file stores your client ID, client secret, and other OAuth 2.0 parameters.
The following shows how you can use `flow_from_clientsecrets()` to create a `Flow` object:
@@ -177,4 +177,4 @@ parser = argparse.ArgumentParser(parents=[tools.argparser])
flags = parser.parse_args()
...
credentials = tools.run_flow(flow, storage, flags)
-``` \ No newline at end of file
+```