I'm trying to create a custom "LikeBox" style widget using the javascript sdk, but it appears that I need an access token to fetch the feed data. Since all the code is on the clientside, I don't really want the page access token visible to everybody. What is the best way to handle this?
Here's the javascript api call that I'm doing that throws an error:
FB.api('/[page]/feed', function(data) { console.log(data); });
Error:
error: Object
code: 104
message: "An access token is required to request this resource."
type: "OAuthException"
Here's the solution: http://tutorialzine.com/2011/03/custom-facebook-wall-jquery-graph/