flickrex v0.6.0 Flickrex.Flickr.Photosets.Comments View Source

Link to this section Summary

Functions

Add a comment to a photoset

Delete a photoset comment as the currently authenticated user

Edit the text of a comment as the currently authenticated user

Returns the comments for a photoset

Link to this section Types

Link to this section Functions

Link to this function add_comment(args \\ []) View Source
add_comment(args()) :: operation()

Add a comment to a photoset.

This method requires authentication with “write” permission.

Arguments

  • photoset_id - (required) The id of the photoset to add a comment to.

  • comment_text - (required) Text of the comment

Link to this function delete_comment(args \\ []) View Source
delete_comment(args()) :: operation()

Delete a photoset comment as the currently authenticated user.

This method requires authentication with “write” permission.

Arguments

  • comment_id - (required) The id of the comment to delete from a photoset.
Link to this function edit_comment(args \\ []) View Source
edit_comment(args()) :: operation()

Edit the text of a comment as the currently authenticated user.

This method requires authentication with “write” permission.

Arguments

  • comment_id - (required) The id of the comment to edit.

  • comment_text - (required) Update the comment to this text.

Link to this function get_list(args \\ []) View Source
get_list(args()) :: operation()

Returns the comments for a photoset.

This method does not require authentication.

Arguments

  • photoset_id - (required) The id of the photoset to fetch comments for.