I am using Facebook Graph API and I wanted to put Like of any comment so I am doing like this.
FacebookGraphAPI obj = new FacebookGraphAPI(AccessToken);
obj.PutLike(item["id"].ToString().Replace("\"", ""));
It is not working even it will not give me error so how I can put the like.
Using the latest API, here’s how to do a like (this assumes that there is a graph api like connection on the object being liked)
The above code is from a current production working app of mine.
Happy coding!