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

Fetching complete Google Photos album webpage from Apps Script

I've been trying to scrape a publicly-shared photo album I have on Google Photos: sharing the album provides a link along the format of photos.app.goo.gl/{SOME_ID}. The goal is to be able to retrieve the individual photo URLs (the URLs that don't…
seb
  • 33
  • 10
0
votes
1 answer

Google - Backup and synch - Way to obtain full listing of skipped files

Is there a way to obtain full listing of skipped files? Clicking on "View" provides bucketed listing of files that were skipped. The listing is partial. Clicking on more shows only 10 additional files. Can complete list be obtained as a text file?
0
votes
1 answer

Is there a way to authenticate OAUTH2.0 of google API through terminal?

I am fetching google photos from my account using Google Photo API. Now there is a need for me to execute that php file via terminal, but the problem is that I can't authenticate with Google API in doing so. Is there a way to do this, and if yes,…
0
votes
1 answer

Get remaining storage on Google photos

It might be really simple but I cannot figure it out. I made a little script that is able to upload some photos/video using rest API. Since they all count towards the storage quota (15gb free) I would like to query the remaining free space. How do…
mfaiz
  • 475
  • 1
  • 7
  • 17
0
votes
1 answer

How to execute an avoidable script without creating a file picker pop up : Python_Selenium_GooglePhotos

I'm trying to upload images to Albums same as directory names. Input field is not available until I click 'Select from Computer' link. If I click, it creates a finder windows to select files, which Selenium can't handle. I've searched google and…
0
votes
0 answers

How to fix "live photos video not show on google photo"?

https://developers.google.com/photos/library/guides/resumable-uploads I use the google api Resumable upload, and set type 'image/heif'. I can see 'Live photo' button on my iPhone app after uploaded. But they're only static photo shown, no live photo…
GGM
  • 1
  • 2
0
votes
1 answer

Fetch a random photo from Google Photos with API

I want to write an app that fetches a random photo from my Google Photos set of photos using the Google Photos API. This is the new Google Photos, not the old one that was linked to a Google Drive. In my review of the API Docs, it seems that you…
vy32
  • 28,461
  • 37
  • 122
  • 246
0
votes
1 answer

Google Photos REST API "pageSize" and "pageToken" parameters causing 400 Bad Request

I'm trying to get all media items in my Google Photos library and referred following documentation link. https://developers.google.com/photos/library/guides/list Documentation says client can request pages using pageSize and provided following…
Cipson
  • 1
0
votes
0 answers

Sharing and Import image in android using Google Photo API android

I want to use Google photo API in my application for sharing image using Google photo API. I have created client id in credential section. From here I am stuck how to use it and how to open Google photo and select image from there for sharing…
0
votes
0 answers

How to show previous activity progressively when closing another activity? (similar to Google Photos app in Android when user swipe down on photo)

In Google Photos app on Android, when the user taps on a photo, the photo opens in full screen. Then the user has 4 swiping options: SwipeUp, a slider shows with the photo metadata SwipeLeft, the user goes to the next photo SwipeRight, the user…
Akram
  • 37
  • 2
  • 7
0
votes
1 answer

How can I provide public access to my photos

I would like to build a small js library that can read a specific album from my account and display the photos within as a slideshow. In this guide (https://developers.google.com/photos/library/guides/get-started), to access the API we need both…
FailedUnitTest
  • 1,637
  • 3
  • 20
  • 43
0
votes
1 answer

How to use optional parameters in Google Photos API?

I am working on project in php with Google Photos API. i have an issue, if i pass optional parameters like pageSize, it doesn't work still get all images. $optParams = array( 'pageSize' => 1, ); $response =…
user9312196
0
votes
1 answer

Is it possible to add Photo Album from Google Drive to Google Photos?

I used Google Drive software to sync my computer data into Google Drive. As their additional features, I uploaded Photos also. Which now available in Google Drive-My Computer-My Photos. All these Photos are available in Google Photos also but not in…
0
votes
0 answers

Is it possible to use the toDataUrl function from the canvas element with a googlePhotos image?

I need to get the base64 data from photos sotred in a google photo album i own. I'm accessing the google photo album throught the google photo api. I'm selecting a photo (using either the baseUrl either the productUrl). I'm "sending" this photo to a…
0
votes
0 answers

How to connect my angular app to a google photo album with googlePhotosApi?

I would like to connect my angular app to a google photos album I own. I activate the API on my google console, I have the key and ID clients OAuth 2.0 : googleconsole I get the oauth2 token of my google account : the account that owns the google…