Facebook Application Data Warehouse

I created a Facebook application (game) in JavaScript. I used Facebook php-sdk. I use sdk well, except to display the name of the registered user and his data.

I want to save each user’s rating in a specific place. Checked by FQL. As I understand it, it does not allow data storage, only the SELECT query is available. So, is there a way by which we can add a rating to user information or something like that.

In short, we can store data on Facebook

OR

We should use our own database server for data storage only.

+4
source share
2 answers

In general, you need to store your data. Although you could fake it using some kind of user attribute, this, of course, is not how it is designed to work, and you cannot count on the fact that data is always available. You better set up your own database and use user FB identifiers to link information together.

+4
source

Facebook now supports posting points through api points found here .

You can also post achievements related to the game, as in here

They have enough guidance to help you!

+2
source

All Articles