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
0 answers

Can't get Google photos album contents using google photos api (and ColdFusion cfhttp)

I'll keep this short. I have OAuth working with the Google Photos API. I am able to return albums and media items but not album specific media items. Below I've done three requests. The first two work while the third does not. Note: In the third…
0
votes
1 answer

A problem with Google Photos media intent

val mediaIntent = Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI) mediaIntent.type = "image/*, video/*" startActivityForResult(mediaIntent, REQUEST_MEDIA) When I call this intent Google Photos shows me only images?
0
votes
1 answer

Problem with action pick media intent from gallery or google photo

How to catch which app user picked to select media programmatically? Google Photo or Gallery
0
votes
1 answer

Google Photos mediaItem.get not behaving as documented

Per https://developers.google.com/photos/library/guides/access-media-items I am expecting that if I take mediaItem.baseUrl for an image, tack on =d to the end, and authorize the request, then i'll get back the media item's original bytes. This works…
xaphod
  • 6,392
  • 2
  • 37
  • 45
0
votes
1 answer

Quota Limits with Google Photos API

I am hitting the daily quota limits of the API, but my usage of the API does not correspond with the quota counts as listed by Google. Here is my usage for 12 hours, started at the reset time of midnight PST: >…
Michael Updike
  • 644
  • 1
  • 6
  • 13
0
votes
1 answer

How to migrate an app from the Picasa API to the Google Photos API

My company has a software that allow users to print photobooks, canvases and stuff like that, and we also allow people to upload photos from social networks such as Google Photos, last month, the old Picasa API was deprecated and now i have to…
0
votes
1 answer

How to dismiss all Google Photos Assistant cards using JavaScript

I have too many Google Photos assistant's cards accumulated How would I dismiss all those cards at once using JavaScript?
ViliusK
  • 11,345
  • 4
  • 67
  • 71
0
votes
1 answer

Google Photos Video Streaming not Working in Safari

I'm trying to get a playable video from a url of a video stored on Google Photos. The documentation suggests adding "=dv" to the base_url It play video in Chrome, Firefox but not in Safari. How do I go about playing video in Safari from Google…
nakunakifi
  • 73
  • 3
0
votes
1 answer

Authorizing requests with OAuth 2.0 without the user signing in

A client has requested implementation of the new Google Photos API as a feed of their photos on the website. The issue arises whereas the library only supports OAuth 2.0 to authorise the library requests. Meaning that each visitor needs to…
Darren
  • 2,176
  • 9
  • 42
  • 98
0
votes
0 answers

Using the Google Photos API to download photos and videos to my device?

My iPhone has enough storage to download my entire Google Photos library, but there's no option in the Google Photos App to do this. I'm learning Flutter app development, so I'm considering writing an app with a nice UI to facilitate this. Does…
David Brophy
  • 849
  • 9
  • 19
0
votes
0 answers

google photos crashing when selecting from image chooser

When choosing google photos from image chooser it is opening but immediately it is crashing. it is happening only in lenovo k8. i tried to find why it is crashing but failed. here is the crash report what i'm getting A/libc: Fatal signal 11…
tyson
  • 155
  • 7
0
votes
1 answer

How to edit multiple photos in Google photos by using Google Apps script?

For editing a single photo: I need go to specific album in Google photos. Then, after clicking on a picture there is an edit option. Which has list of available filters. From there, I can select any filter and click Done. But, I want to know. How to…
Pandu
  • 25
  • 10
0
votes
1 answer

How can I add meta data to the picture in Google Photos

I just created my first album via api, uploaded a picture and added to to my new album. But how can I specify the timezone, the camera data, the location, etc? Do I really need to embed those information via exif? In that case I would need to…
rekire
  • 47,260
  • 30
  • 167
  • 264
0
votes
1 answer

How can i search the image on mediaItems search api on when it was uploaded to Google Photos (Not when it was created)

As we know we can filter the media item base of media item creation date. But i want to filter the media item base on media uploaded time on Google Photos. I want to know it is possible with current Google Photos API's?. If Yes then kindly help me.
Chandan Kushwah
  • 111
  • 1
  • 2
  • 7
0
votes
1 answer

"invalid_scope" when trying to get oauth2 access token

I'm following the docs at https://developers.google.com/photos/library/guides/authentication-authorization, and believe the below code is quite close to correct ... import requests # from…
offby1
  • 6,767
  • 30
  • 45