Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify explanation of access_token property in Python notebook (in docs/nb) #872

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions docs/nb/api_access_via_python.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -359,9 +359,7 @@
"id": "ddeba883",
"metadata": {},
"source": [
"The API response will contain several properties (you can list them via `response.json().keys()`). One of them is named `access_token`.\n",
"\n",
"The `access_token` property contains a string you can use to access \"private\" API endpoints. That string is the access token (hence, the name of the property).\n",
"The API response will contain several properties (you can list them via `response.json().keys()`). One of them is named `access_token`. Its value is an access token; i.e., a string you can use to access \"private\" API endpoints.\n",
"\n",
"I recommend storing that access token in a Python variable for future reference. You can do that by running this cell:"
]
Expand Down