Learn about the new Picker API and important Library API changes.
Details here.
Method: sessions.create
Generates a new session during which the user can pick photos and videos for third-party access.
If the user doesn't have an active Google Photos account, a FAILED_PRECONDITION
error is returned.
If the client application creates too many sessions per user, a RESOURCE_EXHAUSTED
error is returned. Clients are unlikely to reach these limits under normal circumstances. However, clients are still recommended to call sessions.delete
after each session, to proactively stay within resource limits.
HTTP request
POST https://photospicker.googleapis.com/v1/sessions
The URL uses gRPC Transcoding syntax.
Query parameters
Parameters |
requestId |
string
Optional. A client-provided unique identifier for this request. This ID is used to enable the streamlined picking experience for applications using the OAuth 2.0 flow for limited-input devices. This ID must have the format of a UUID (version 4) string and follow these requirements:
- Must not contain any sensitive identifying information about the user.
- Must contain 32 hexadecimal characters divided into five groups separated by hyphens, in the format "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" (or 8-4-4-4-12).
|
Request body
The request body contains an instance of PickingSession
.
Response body
If successful, the response body contains a newly created instance of PickingSession
.
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/photospicker.mediaitems.readonly
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-03-10 UTC.
[null,null,["Last updated 2025-03-10 UTC."],[[["This endpoint creates a session for users to select photos and videos for third-party access."],["A `FAILED_PRECONDITION` error occurs if the user lacks an active Google Photos account."],["Excessive session creation leads to a `RESOURCE_EXHAUSTED` error, though unlikely under normal use."],["Clients should call `sessions.delete` after each session to avoid exceeding resource limits."],["Requires the `https://www.googleapis.com/auth/photospicker.mediaitems.readonly` OAuth scope for authorization."]]],["This describes the creation of a new session for users to grant third-party access to their photos and videos. It uses a `POST` request to `https://photospicker.googleapis.com/v1/sessions`. The request body contains a `PickingSession` instance, and a successful response returns a new `PickingSession`. Requires `photospicker.mediaitems.readonly` OAuth scope. Errors include `FAILED_PRECONDITION` for inactive accounts and `RESOURCE_EXHAUSTED` for excessive session creation. Deleting sessions with `sessions.delete` is recommended to manage resources.\n"]]