From ab7d9d671b589ddcc6418fe97b74deb2feb4e6c7 Mon Sep 17 00:00:00 2001 From: eecavanna <134325062+eecavanna@users.noreply.github.com> Date: Mon, 20 Jan 2025 12:25:05 -0800 Subject: [PATCH] Clarify explanation of access token in Python notebook (docs) --- docs/nb/api_access_via_python.ipynb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/nb/api_access_via_python.ipynb b/docs/nb/api_access_via_python.ipynb index e85f7db6..0b529ca9 100644 --- a/docs/nb/api_access_via_python.ipynb +++ b/docs/nb/api_access_via_python.ipynb @@ -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:" ]