Stream.removeComment

From Facebook Developer Wiki

Jump to: navigation, search

Contents

Description

This method removes a comment from a post.

Privacy rules apply to the posts from which the user can delete comments; if the post is on the user's Wall, any comment can be deleted. If the post is on a friend's Wall, only comments made by the user can be deleted.

Desktop applications must pass a valid session key, and can remove comments made by the user associated with that session key only. Other applications can delete any comments, provided you have a valid post_id.

In order to remove a comment, the user must grant your application the publish_stream extended permission.

Parameters

RequiredNameTypeDescription
optional session_key string The session key of the logged in user. The session key is automatically included by our PHP client. Desktop applications must pass a valid session key (and have been granted the publish_stream extended permission); other applications need only the publish_stream extended permission.
required comment_id string The ID for the comment you want to remove.
optional uid int The user ID of the user who made the comment. If this parameter is not specified, then it defaults to the session user.
Note: This parameter applies only to Web applications and is required by them only if the session_key is not specified. Facebook ignores this parameter if it is passed by a desktop application.

Example Requests

$facebook->api_client->stream_removeComment(<comment_id>, <uid>);

Response

This call returns true if the comment was removed, or false and an error code if the comment was not removed.

Error Codes

CodeDescription
100 Invalid parameter.
102 Session key invalid or no longer valid (if it's a desktop application and the session is missing).
200 Permissions error. The application does not have permission to perform this action.
210 User not visible. The user doesn't have permission to act on that object.

Notes

You can call this method using a session secret, and not the application secret (for example, for a Facebook Connect site or desktop application).

See Also

Using the Open Stream API

reference