List what the user picked
list_picked_mediaRetrieve the photos and videos a user selected in a Google Photos picker session after confirmation. Use the session ID to list chosen media, with paging support.
Instructions
Return the media items the user selected in a picker session. Call check_pick_session first; this returns an empty list until the selection is confirmed.
The items include a base_url that expires in about an hour. To get actual bytes, pass an item's base_url to download_picked rather than handing the URL to the user.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many to return per page, 1-100. | |
| account | No | Which connected Google account to act as, by the name it was configured under (or its email). Defaults to the first one. Call list_accounts to see them. | |
| page_token | No | Continue from a previous page. Pass the `next_page_token` from the last result. Omit for the first page. | |
| session_id | Yes | The session_id returned by start_pick_session. |