AbstractInterface | +--photos.comments.CommentsInterface
| Method Summary | |
public string |
addComment(string photo_id, string comment_text)
Add comment to a photo as the currently authenticated user. returns the id of the new comment |
public void |
deleteComment(string comment_id)
Delete a comment as the currently authenticated user. |
public void |
editComment(string comment_id, string comment_text)
Edit the text of a comment as the currently authenticated user. |
public array |
getList(string photo_id)
|
| Methods inherited from AbstractInterface |
init
|
| Method Detail |
public string addComment(string photo_id, string comment_text)
string photo_id (Required) - The id of the photo to add a comment to.string comment_text (Required) - Text of the comment.public void deleteComment(string comment_id)
string comment_id (Required) - The id of the comment to delete. public void editComment(string comment_id, string comment_text)
string comment_id (Required) - The id of the comment to edit. string comment_text (Required) - Update the comment to this text. public array getList(string photo_id)
string photo_id (Required)