Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/auth.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/pagination.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 the legacy Google+ activities API `list()` method are processed:

```python
activities = service.activities()
Expand Down
2 changes: 1 addition & 1 deletion samples/plus/plus.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading