Jitendra Jadav
Jitendra Jadav

Reputation: 365

How do I use the Facebook Graph API to like a comment?

How do I "like" a comment using the Facebook Graph API in C#?

Upvotes: 0

Views: 724

Answers (1)

Michael Pryor
Michael Pryor

Reputation: 25356

From the Facebook comment docs:

You can like a comment by issuing an HTTP POST request to COMMENT_ID/likes with the publish_stream permission. No parameters necessary.

Also, check out the Facebook C# library.

Upvotes: 4

Related Questions