Reputation: 1299
I was wondering if it's possible to search through ~10k of Battlelog URL:s for a keyword? The pages are not .html-pages, the URL looks like this: http://battlelog.battlefield.com/bf3/battlereport/show/9693602/1/369698400/.
If the pages were .html I could just use software like Orbit Downloader or something, maybe GNU's wget. But now there are no actual files (as far as I can tell) to download.
I want to search from http://battlelog.battlefield.com/bf3/battlereport/show/9698003/1/369698400/ to http://battlelog.battlefield.com/bf3/battlereport/show/9708877/1/369698400/, and of course I don't want it to be like a ddos-attack or something, I don't want to get banned.
Just returning the URL:s with matches will be sufficient, I don't need to process the information more than that.
Upvotes: 0
Views: 131
Reputation: 60236
The page processes JSON data. The JSON data URLs used here are:
http://battlelog.battlefield.com/bf3/battlereport/loadplayerreport/9693602/1/369698400/
http://battlelog.battlefield.com/bf3/battlereport/loadgeneralreport/9693602/1/
Upvotes: 1