Reputation: 131
What is the facebook like method name as add bookmark method 'bookmark.add'
FB.ui( {method: 'bookmark.add' },
function(response) {
//Handle Response
}
);
Upvotes: 1
Views: 3311
Reputation: 8932
There is no method for adding a like. Liking something through any facebook api is not supported. The only way you can have a user like something is by using the official like buttons.
Upvotes: 2