231 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
3
votes
2
answers
295
views
Chrome Extension: Google Photos API Returns "Insufficient Scopes" Despite Correct Setup
I’m building a Chrome extension that integrates with Google Photos API, but I keep hitting a 403 PERMISSION_DENIED error with the message:
"Request had insufficient authentication scopes"
...
0
votes
1
answer
838
views
Google API Call: Request had insufficient authentication scopes
I have a python script that I run manually to connect to my photo library and download images. This was working for a time, and then it stopped working. Nothing changed, just time. I then let AI try ...
0
votes
1
answer
420
views
photos.readonly permission granted, but requests fail with "Request had insufficient authentication scopes"
I'm trying to understand why the Google Photos Library API is not behaving correctly - despite having photos.readonly permission, I'm getting an error "403 RMISSION_DENIED - Request had ...
0
votes
0
answers
50
views
Download Photos in Partner ( shared from other email ) using Python giving 400 error
Was trying to download Partner Photos.. getting
raise HttpError(resp, content, uri=self.uri)
googleapiclient.errors.HttpError: <HttpError 400 when requesting https://photoslibrary.googleapis.com/...
0
votes
0
answers
32
views
Using the Google Photo API from Python to change the description of a photo
New to Python and to the Google Photo API, but trying to teach myself by creating a 'useful' tool. So far I have successfully connected to the API and extracted a list of all my albums and also a ...
2
votes
1
answer
355
views
Google Photos migration from Library API to Picker API in iOS
I'm fetching the Google Photos using the Library API but this API is going to be deprecated after March 31.
According to Google I need to start using Picker API
The integration steps are clear:
1 - ...
0
votes
0
answers
59
views
Google Photos Library API Refresh Token ASP.NET Core MVC
I am trying to figure out if there is a way to get a refresh token for the Google Photos Library API. It seems like Google Photos Library does not support refresh tokens, because the photos are user ...
1
vote
1
answer
106
views
Programmatically accessing user-selected MediaItems without repeated User Intervention (Google Photos API Update)
According to the upcoming March 2025 update for the Google Photos Library API, it appears that the only way to programmatically access mediaItems not created by the app is by using the Picker API, ...
1
vote
0
answers
89
views
Flutter app image selection with custom UI
Creating a travel journal and users can upload images to their entries. Running into a headache with implementing image selection. Tried the image_picker package but had issues with limiting the ...
1
vote
2
answers
446
views
Google Library API to Photo Picker - do you have to use Google's UI?
I have a website for pilots that allows people to add images to a flight entry. I've long had functionality that would use the Google Photo Auth API to preview the Google Photos that are on the date ...
0
votes
1
answer
48
views
Google Photos API returns TimeoutError when batchCreate is used
I am migrating my old Python 2.7 version to Python 2.10.
response = requests.post('https://photoslibrary.googleapis.com/v1/uploads', headers=headers, data=data)
works fine, but when I call
response = ...
0
votes
1
answer
57
views
Google Photo: Cannot retrieve GPS data from python script
I've created a python script to download images from google photo via API including their metadata (mainly I’m interested in the GPS location data).
I tried different options but unfortunately they ...
2
votes
0
answers
606
views
Trying to implement google photos picker api
In my next.js application, I'm trying to implement the Google Photos library API. But in this case, I want to get the Google Photos library picker just like the Google Drive picker. But when I try to ...
0
votes
0
answers
61
views
Increasing Timeout when too many requests with Google Photos BaseUrl
Hello everyone !
I'm currently develop a solution to transfert all my photos on Google Photos for a specific year and month to my FTP nas. The only problem i got is that more i execute downloads ...
0
votes
1
answer
113
views
Google Photos API add to album
I am getting a error I cannot work out the reason for in
public function album_addIds($itemIds, $albumId) {
if (!is_array($itemIds)) {
$itemIds = [$itemIds];
}
try ...