fbstats icon indicating copy to clipboard operation
fbstats copied to clipboard

FQL no longer works.

Open phiresky opened this issue 10 years ago • 4 comments

Facebook deprecated the FQL Api in version v2.0 and removed it completely in v2.1. This means this no longer works if the "app" is created after Aug 2014.

The newer Api limits the message loading to 25 messages per request (20x slower) and blocks after very few calls, making it almost impossible to get >10k messages.

If anybody has an idea to fix this, feel free to comment.

phiresky avatar Feb 06 '15 17:02 phiresky

A possible solution would be to be able to import the messages.html from facebook export..

phiresky avatar Feb 06 '15 18:02 phiresky

yeah please do that!! i downloaded my facebook export but I cant access the html file because its HUGE (100mb), Chrome crashes :P

xjimdim avatar Apr 12 '15 21:04 xjimdim

any news?

gadour97 avatar Apr 01 '20 23:04 gadour97

I think they now also allow JSON export, which is even easier to parse. Only problem is the file size so it probably needs a streaming JSON parser. Shouldn't be hard, you can use FileReader API to get a file from file system in chunks and then parse in those chunks. But I don't use Facebook anymore so I don't really have a large incentive to implement this. PRs welcome of course.

phiresky avatar Apr 02 '20 10:04 phiresky