First, I have no idea how I got as far as I did, since my PHP skillz are horrible. But I am slowly learning.
I've been able to successfully get a news stream for a user, and display it. I am able to retrieve all the data needed to display how many likes there are, and comments.
I know that to like a post through Facebook's Graph API is to include the object ID, along with access token through a url.
https://graph.facebook.com/OBJECT ID/likes?access_token=ACCESS TOKEN
I've worked with AJAX in the past, to get data and post it. So I figured I could do the same with this. And I've come up with this.
$.ajax({ // Set Like
url: "https://graph.facebook.com/" + objectId + "/likes?access_token=<?php echo $access_token; ?>",
type: "POST",
success: function(data) {
// Successful
}
});
This works - sometimes - on setting a like. I have a variable that holds the objectId for each post, and same for the access token for the user. It works.
To remove, unlike, a post, I figured it'd be the same, only with DELETE, but that doesn't seem to work at all.
$.ajax({ // Remove Like
type: 'DELETE',
url: "https://graph.facebook.com/" + objectId + "/likes?access_token=<?php echo $access_token; ?>",
success: function(data) {
// Successful
}
});
Now, I know all browsers don't recognize DELETE, and there is a work around be using POST and adding "data: {"_method":"delete"},". I've tried it this way, and that doesn't work either.
Is it possible to do this AJAX call through PHP? Where I have a jQuery click function that posts a like, and then delete, or remove, it?
I've been searching stackoverflow for a few days, finding a bunch of examples with cURL and php, but none of them make much sense to me, and how I might use it in my case.
This post: adding like comment issue using graph api explains a lot, but I can't seem to get it to work.
Here are some things that I know I need to include in a post link of some sort...
$user = $facebook->getUser();
$access_token = $facebook->getAccessToken();
$facebookdata = $facebook->api('/me/home?access_token=' . $access_token);
If I could get some help, that would be awesome. Or even some better explanation on how to do this.
Thank you.