Skip to content

Commit d1a255f

Browse files
authored
fix: correct api version in oauth-installed.md (#1258)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [x] Appropriate docs were updated (if necessary)
1 parent ea58ea7 commit d1a255f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/oauth-installed.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Google's OAuth 2.0 server authenticates the user and obtains consent from the us
109109

110110
Use the authorized `Http` object to call Google APIs by completing the following steps:
111111

112-
1. Build a service object for the API that you want to call. You build a a service object by calling the `build` function with the name and version of the API and the authorized Http object. For example, to call version 2 of the Drive API:
112+
1. Build a service object for the API that you want to call. You build a a service object by calling the `build` function with the name and version of the API and the authorized Http object. For example, to call version 3 of the Drive API:
113113

114114
```python
115115
from googleapiclient.discovery import build
@@ -170,4 +170,4 @@ if __name__ == '__main__':
170170
list_drive_files(service,
171171
orderBy='modifiedByMeTime desc',
172172
pageSize=5)
173-
```
173+
```

0 commit comments

Comments
 (0)