Im planning on making an application which fetches public posts from the Facebook API and perform some kind of analysis on it. To do this, I need to save the public posts to a database. I read the privacy policy and it says
"You may cache data you receive through use of the Facebook API in order to improve your application’s user experience, but you should try to keep the data up to date. This permission does not give you any rights to such data." and the FAQ says "We have deprecated our 24 hour data storage policy. You may now indefinitely cache data to improve your application's user experience.".
These statements seem to be based on apps that act on behalf of the user (i.e. the user has to log in via OAuth and allow the app to access certain information). Do these statements also apply to an application that just fetches public data and saves them to a database? I just want to be sure im not doing anything illegal.
Thanks in advance!