-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flickr not working #3441
Comments
You get a 403 error when not signed in, and then a 404 when signed in without permission to view this album, it seems:
To "login", use |
got this issue too. |
having the the album url is: https://www.flickr.com/photos/29956195@N08/albums/72157616593453778/ |
Downloads with and without any OAuth tokens for me.
|
curious - it's working here now as well. i did message the user about album permissions but maybe it was just user error. thanks for the reply. |
oh my apologies - i posted the wrong url. the gallery that returns the error is https://www.flickr.com/photos/29956195@N08/albums/72157616535933159/
|
The diff --git a/gallery_dl/extractor/flickr.py b/gallery_dl/extractor/flickr.py
index e56c0f31..357f6844 100644
--- a/gallery_dl/extractor/flickr.py
+++ b/gallery_dl/extractor/flickr.py
@@ -132,8 +132,12 @@ class FlickrAlbumExtractor(FlickrExtractor):
def metadata(self):
data = FlickrExtractor.metadata(self)
- data["album"] = self.api.photosets_getInfo(
- self.album_id, self.user["nsid"])
+ try:
+ data["album"] = self.api.photosets_getInfo(
+ self.album_id, self.user["nsid"])
+ except Exception:
+ self.log.warning("%s: Unable to retrieve album metadata",
+ self.album_id)
return data
def photos(self): |
many thanks - that worked perfectly |
gallery-dl "https://www.flickr.com/photos/151334312@N02/sets/72157696972300394/"
[flickr][error] NotFoundError: Requested album could not be found
The text was updated successfully, but these errors were encountered: