Why is this so hard?
I want to emulate the "like social plugin" on my website to my facebook PAGE (who has an app?) doing something like this:
HTML:
<a href="someurl">Like</a>
JS:
$.ajax('someurl', { data: JSON.stringify({whatever: isRequired})})
.done(function(response) {
//update UI
});
I've already loaded the JS SDK, I just can't actually do anything with it because it's asking for an AppId, which I neither have nor want (unless there was a way to link an App to a page). I'm completely befuddled as to why this is such a ridiculously hard process. I've pored over all the API documents and am having problems making sense of it all.
Am I stuck using their blasé button, or is there a way I can make the calls to Facebook myself?