flickrex v0.6.0 Flickrex.Flickr.Groups.Discuss.Replies View Source

Link to this section Summary

Functions

Post a new reply to a group discussion topic

Delete a reply from a group topic

Edit a topic reply

Get information on a group topic reply

Get a list of replies from a group discussion topic

Link to this section Types

Link to this section Functions

Post a new reply to a group discussion topic.

This method requires authentication with “write” permission.

Arguments

  • group_id - (required) Pass in the group id to where the topic belongs. Can be NSID or group alias. Making this parameter optional for legacy reasons, but it is highly recommended to pass this in to get faster performance.

  • topic_id - (required) The ID of the topic to post a comment to.

  • message - (required) The message to post to the topic.

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

Delete a reply from a group topic.

This method requires authentication with “delete” permission.

Arguments

  • group_id - (required) Pass in the group id to where the topic belongs. Can be NSID or group alias. Making this parameter optional for legacy reasons, but it is highly recommended to pass this in to get faster performance.

  • topic_id - (required) The ID of the topic the post is in.

  • reply_id - (required) The ID of the reply to delete.

Edit a topic reply.

This method requires authentication with “write” permission.

Arguments

  • group_id - (required) Pass in the group id to where the topic belongs. Can be NSID or group alias. Making this parameter optional for legacy reasons, but it is highly recommended to pass this in to get faster performance.

  • topic_id - (required) The ID of the topic the post is in.

  • reply_id - (required) The ID of the reply post to edit.

  • message - (required) The message to edit the post with.

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

Get information on a group topic reply.

This method does not require authentication.

Arguments

  • group_id - (required) Pass in the group id to where the topic belongs. Can be NSID or group alias. Making this parameter optional for legacy reasons, but it is highly recommended to pass this in to get faster performance.

  • topic_id - (required) The ID of the topic the post is in.

  • reply_id - (required) The ID of the reply to fetch.

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

Get a list of replies from a group discussion topic.

This method does not require authentication.

Arguments

  • group_id - (required) Pass in the group id to where the topic belongs. Can be NSID or group alias. Making this parameter optional for legacy reasons, but it is highly recommended to pass this in to get faster performance.

  • topic_id - (required) The ID of the topic to fetch replies for.

  • per_page - (required) Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.

  • page - The page of results to return. If this argument is omitted, it defaults to 1.