I have a Facebook page that I'm trying to mass download all the images off of. As a first step, I created a Python script that programmatically records all the photo URLs, album by album, via the Graph API. It works great, but the issue is I quickly run into the API rate limits with all the photo paginations. I can only return a maximum of 50 photos per page. There are over 1600 albums, and every one has hundreds of photos. Back of napkin math tells me that with a limit of 200 requests per hour, running 24/7 it will take over three days to get all the URLs. Then that also introduces issues with the access token expiring. Is there a better way to approach this problem?
Trying to download hundreds of thousands of photos from a Facebook page, how to deal with Graph API limit - Stack Overflow
与本文相关的文章
- Javascript get value from array at index while avoiding undefined if index does not exist? - Stack Overflow
- Testing for Javascript is enabled in ASP.NET MVC - Stack Overflow
- BIOS开发之路(三)——UEFI的概念及启动阶段
- android - unable to start uiautomatorviewer in windows Invalid signature file digest for Manifest - Stack Overflow
- printing - JavaScript Call and Apply in internet explorer 8 (and 7) for window.print - Stack Overflow
- javascript - inject $rootScope in config angularJs - Stack Overflow
- jquery - In CSSJavaScript, how is this iconfont plugin implemented? - Stack Overflow
- javascript - Controller being called twice in Ionic (AngularJS) - Stack Overflow
- javascript - Recommended API and IDE to work with WebGL - Stack Overflow
- 解决迅雷影音无声音问题:深入探讨MMDevAPI.dll错误及修复方案
- javascript - Created npm Package but not able to load :: Module not found: - Stack Overflow
- javascript - Requirejs + Backbone Uncaught TypeError: Cannot read property 'Model' of undefined - Stack Overflow
- javascript - text-decoration:none doesn't remove text decoration - Stack Overflow
- javascript - Insert a script tag inside template Vue - Stack Overflow
- javascript - Cypress.io - Programmatically set response based on request parameters in cy.route() - Stack Overflow
- Angular 19 SSG - how to use custom server (logic)? - Stack Overflow
- javascript - How to set a listener on Firebase value event? - Stack Overflow
- html - JavaScript Image Popup Window - Stack Overflow
- javascript How Array.prototype.push concatenates - Stack Overflow
- javascript - How to Reset Session Timeout in asp.net mvc - Stack Overflow
评论列表(0)
- 暂无评论