I'm working out a project that is tightly connected with Facebook. However, I got several questions related to the program flow.
A user may authenticate through Facebook, allowing me to use the user's access_token for data querying. Now, when I need the data, I call the api. This happens more frequently (on different pages, with the fields required to provide the view the needed data). A disadvantage I see is that I query Facebook's API everytime a request is made on one of my website it's pages. Is this a bad thing to do?
Another option would be to store the entire data array in a session (or request it when no session is found) and pull the needed data out of it, and not just the fb id and access token.
If someone has a better idea, or has experience with this, throw it towards me. Any tips are appreciated.
Regards, matvp.

