Last active
February 27, 2018 15:46
-
-
Save nbriz/46db7bf9a439bc874ed1 to your computer and use it in GitHub Desktop.
onlyLargePhotos.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var imgHTML = []; | |
var imgs = document.querySelectorAll(".fbPhotoStarGridElement"); | |
imgs.forEach((el, i)=>{ | |
imgHTML.push('<img src="'+el.getAttribute('data-starred-src')+'">'); | |
}); | |
document.body.innerHTML = imgHTML; |
I am also getting the issue with 403 errors where trying to execute the code. Some large photos load and some do not. Is this Facebook doing a rate limit on GETs in order to prevent the photo dump?
some observations from Ted Davis ( who helped re-write the code above ):
i ran into one problem..
the server address you patch onto jpg urls unfortunately isn’t so static.
when i did it, i had 93 images fail to load..
looked closer and saw the servers change a bit from your:
fbcdn-sphotos-f-a.. » to things like: fbcdn-sphotos-a-a... etc.
not sure the rules.. if it’s just date of upload/hosting or euro/us thing?
Is there any updated version of the script? I only get a blank page when I run it. I'd like to download the photos I'm tagged in before untagging myself with the all inclusive script found at http://nickbriz.com/facebook/unfriend.html
@nbriz I am getting the same error as Allison and Sean. Is there a fix for this?
And sometimes I get a blank page, anyone could help?
updated w/new code by @ffd8 (Ted Davis) Feb 27, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Anyone else getting a large amount of 403 errors when they run this?