I'm a little confused on where to start with facebook intergration. Currently I've created a javascript login button that granting the correct rights to my app. What I want to do is be able to post to the users steam but I believe I need an access_token. I managed to get an access token in javascript with the following code
FB.login(function(response) {
if (response.authResponse) {
alert(response.authResponse.accessToken);
} else {
alert('User cancelled login or did not fully authorize.');
}
});
Do I need to find a way to store this access token to my database so I can use it whenever I require to post to the users wall? Also is this the best way to go about getting an access token? I'd rather get it server-side than client-side then passing it to the server.
Sorry if I'm missing something. Thanks.