Overview
This node interacts with the Google Photos API to list media items from a user's Google Photos library. It supports fetching all media items or limiting the number of results returned. This is useful for scenarios where users want to retrieve their photos and videos for further processing, backup, or integration with other applications.
Use Case Examples
- Retrieve all media items from Google Photos to create a backup.
- Fetch a limited number of media items to display in a custom gallery application.
Properties
| Name | Meaning |
|---|---|
| Return All | Whether to return all media items or only up to a specified limit. |
| Limit | The maximum number of media items to return when 'Return All' is false. |
| Request Options | Additional request settings such as batching, SSL certificate validation, proxy configuration, and request timeout. |
Output
JSON
json- An array of media item objects retrieved from Google Photos, each containing details about individual media items such as photos or videos.
Dependencies
- Requires an OAuth2 API credential for Google Photos to authenticate requests.
Troubleshooting
- Ensure the OAuth2 credentials are correctly configured and have the necessary permissions to access Google Photos.
- If the node returns fewer items than expected, check the 'Return All' and 'Limit' settings.
- Network issues or proxy misconfiguration can cause request failures; verify proxy settings if used.
- SSL certificate validation errors can be bypassed by enabling 'Ignore SSL Issues', but this should be used cautiously.
Links
- Google Photos API - List Media Items - Official documentation for listing media items using the Google Photos API.