Questions tagged [google-photos]

The new photos app allows you to choose photos and videos from your device (local and online)

Google photos app is the next version of the gallery app, which is an integral part of the Google Plus app. This app allows other apps to browse/edit/share/choose images and videos (both local and online). It's an alternate application for the default Gallery app.

Reference: https://support.google.com/plus/answer/3453521?hl=en

310 questions
0
votes
1 answer

Automating Chrome Cast Ambient Mode settings or Google Photo Album content

I want to rotate out/toggle two images within my Chrome Cast's Ambient Mode (via Google Photo Album). Possible routes that I see: Delete image 1 and add image 2 of an album one day, the next delete image 2 and add image 1. Each day, switch the…
0
votes
1 answer

Id of photos in Google photos API

I am using the Google photos API We use this to add and reference photos to google photos. Save the ID that is issued when adding a photo, link it with other information by using it, and reference the photo again. After photos were added, it was…
yu kari
  • 1
  • 1
0
votes
0 answers

Google Photos API - why are some querys POST and some GET?

From the documentation at the Google Photo API Docs it states that to get mediaItems in general that is done using a GET request: "GET https://photoslibrary.googleapis.com/v1/mediaItems" But for getting mediaItems from a specific album is done using…
zaifrun
  • 931
  • 9
  • 21
0
votes
0 answers

Google Photos Api return null

When I try to list albums with the PhotosLibraryService API, I always return null, has anyone been able to use the new Google Photos API yet? The picasa API no longer works. public void ListAlbums() { var json =…
Samuel
  • 154
  • 2
  • 13
0
votes
2 answers

Exporting a list of images from Google Photos or DropBox as CSV

Do any of the major online photo storage/sharing platforms offer a reasonable way to export a set of image URLs and titles as something like a CSV or fetch them as JSON from a REST API? I am trying to get any sort of clean list of title, url value…
0
votes
1 answer

I want to get the information of exact categories from Google Photos API, such as the each people in PEOPLE categories

I want to get the information of exact categories from Google Photos API, such as the each people in PEOPLE categories ,but I find any methods in Google Photos APIs, Can you help me to get the information of exact categories?
sniunu
  • 1
0
votes
1 answer

Q: Google Photos Library API - I don't know how it works, someone?

I'm trying to load an album from Google Photos via javascript but I don't understand how the api works, I started reading Google Photos API but no luck. Is there a code reference that I can follow to get a list of the photos of my album? I found…
0
votes
1 answer

Upload photos to Google Photos API - Error 500

I'm getting the error below while trying to upload media to Google Photos API, following the docs This is how i retrieve my bytes array: And this is how i make the request: I've tried a lot of things and none of it work... Note: I'm consuming…
0
votes
1 answer

Is there a way to access the classification of photos done by Google Photos? Or recently viewed photos?

Question pretty much says it. I want to know if Google exposes the classification of photos on a user's phone through some API - so that I wouldn't have to implement a system to analyze and classify photos for my app. I also need a way to access…
0
votes
1 answer

Filtering out people in google photos using content filter does not appear to work

I am trying to select all pictures that do not feature people using the following content filter { "filters": { "contentFilter": { "excludedContentCategories": [ "PEOPLE", "SELFIES", ] } } } However, I am…
homiak
  • 401
  • 5
  • 12
0
votes
1 answer

Sending html canvas binary data to Google Photos API

I'm trying to upload an image from canvas to Google Photos: Step 1: Upload binary image data POST https://photoslibrary.googleapis.com/v1/uploads Content-type: application/octet-stream Authorization: Bearer OAuth2_TOKEN X-Goog-Upload-File-Name:…
user2558137
0
votes
1 answer

I'm trying to build an app using Google photos API, in which given a person's image, I can get all the images of him/her from Google photos

I'm a newbie and this is my first project on this topic. Google photos group the images based on faces. I want to fetch, set of all photos associated to a given person or set of photos in which the person is present. Is it possible to do this? How…
0
votes
1 answer

Get the ID of the cover photo for a Google Photos album

Using the Google Photos api, is there any way to get the ID of the cover photo of an album? So, for example, I could query the metadata on the cover photo? The only thing I see is the coverPhotoBaseUrl, which doesn't help me.
Robin Clowers
  • 2,150
  • 18
  • 28
0
votes
2 answers

Animation to changing HTML page

I've been trying, for a few days, to add an animation between two different HTML pages/files (index.html -> about.html). My idea is to animate/have a transition when going from one page to the other: in my case from the index.html to the about.html…
Toufic Batache
  • 762
  • 10
  • 24
0
votes
0 answers

FileNotFoundException OpenInputStrream Function for Google Photos Image Picker

This is my code for the image picker (both local and google photos) This is my intent request Intent photoPickerIntent = new Intent(Intent.ACTION_PICK); if(fileType!=null) { if(fileType.equals("video")) { …