photos_media
Creates, updates, deletes, gets or lists a photos_media
resource.
Overview
Name | photos_media |
Type | Resource |
Id | google.places.photos_media |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The resource name of a photo media in the format: places/{place_id}/photos/{photo_reference}/media . |
photoUri | string | A short-lived uri that can be used to render the photo. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_media | SELECT | photosId, placesId | Get a photo media with a photo reference string. |
SELECT
examples
Get a photo media with a photo reference string.
SELECT
name,
photoUri
FROM google.places.photos_media
WHERE photosId = '{{ photosId }}'
AND placesId = '{{ placesId }}';