From f2a869f31e9cd735e3db763b776e0506c07ef37e Mon Sep 17 00:00:00 2001 From: Mudassir Hassan <91305738+Mudassir55@users.noreply.github.com> Date: Sun, 14 Jun 2026 16:36:27 +0500 Subject: [PATCH 1/2] docs: update outdated Google+ references --- docs/auth.md | 2 +- docs/pagination.md | 2 +- samples/plus/plus.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/auth.md b/docs/auth.md index f197fe338c6..8dbed0239e8 100644 --- a/docs/auth.md +++ b/docs/auth.md @@ -1,6 +1,6 @@ # Authentication Overview -This document is an overview of how authentication, authorization, and accounting are accomplished. For all API calls, your application needs to be authenticated. When an API accesses a user's private data, your application must also be authorized by the user to access the data. For example, accessing a public Google+ post would not require user authorization, but accessing a user's private calendar would. Also, for quota and billing purposes, all API calls involve accounting. This document summarizes the protocols used by Google APIs and provides links to more information. +This document is an overview of how authentication, authorization, and accounting are accomplished. For all API calls, your application needs to be authenticated. When an API accesses a user's private data, your application must also be authorized by the user to access the data. For example, accessing public API data would not require user authorization, but accessing a user's private calendar would. Also, for quota and billing purposes, all API calls involve accounting. This document summarizes the protocols used by Google APIs and provides links to more information. ## Access types diff --git a/docs/pagination.md b/docs/pagination.md index 9bcdee5e7e9..52ca9fbe0f2 100644 --- a/docs/pagination.md +++ b/docs/pagination.md @@ -4,7 +4,7 @@ Some API methods may return very large lists of data. To reduce the response siz To process the first page of results, create a request object and call `execute()` as you normally would. For further pages, you call the corresponding `method_name_next()` method, and pass it the previous request and response. Continue paging until `method_name_next()` returns None. -In the following code snippet, the paginated results of a Google Plus activities `list()` method are processed: +In the following code snippet, paginated results from an API `list()` method are processed: ```python activities = service.activities() diff --git a/samples/plus/plus.py b/samples/plus/plus.py index 6244c9228cf..55cca323063 100755 --- a/samples/plus/plus.py +++ b/samples/plus/plus.py @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -"""Simple command-line sample for the Google+ API. +"""Legacy command-line sample for the Google+ API. Command-line application that retrieves the list of the user's posts.""" from __future__ import print_function From 1c05863587a10602892bbc7a9b86bed0e4ad6883 Mon Sep 17 00:00:00 2001 From: Mudassir Hassan <91305738+Mudassir55@users.noreply.github.com> Date: Sun, 14 Jun 2026 16:47:07 +0500 Subject: [PATCH 2/2] docs: clarify legacy pagination sample wording --- docs/pagination.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pagination.md b/docs/pagination.md index 52ca9fbe0f2..08b821fa780 100644 --- a/docs/pagination.md +++ b/docs/pagination.md @@ -4,7 +4,7 @@ Some API methods may return very large lists of data. To reduce the response siz To process the first page of results, create a request object and call `execute()` as you normally would. For further pages, you call the corresponding `method_name_next()` method, and pass it the previous request and response. Continue paging until `method_name_next()` returns None. -In the following code snippet, paginated results from an API `list()` method are processed: +In the following code snippet, paginated results from the legacy Google+ activities API `list()` method are processed: ```python activities = service.activities()