pub async fn get_story_interactions(
story_id: i32,
query: String,
only_contacts: bool,
prefer_forwards: bool,
prefer_with_reaction: bool,
offset: String,
limit: i32,
client_id: i32,
) -> Result<StoryInteractions, Error>Expand description
Returns interactions with a story. The method can be called only for stories posted on behalf of the current user
ยงArguments
story_id- Story identifierquery- Query to search for in names, usernames and titles; may be empty to get all relevant interactionsonly_contacts- Pass true to get only interactions by contacts; pass false to get all relevant interactionsprefer_forwards- Pass true to get forwards and reposts first, then reactions, then other views; pass false to get interactions sorted just by interaction dateprefer_with_reaction- Pass true to get interactions with reaction first; pass false to get interactions sorted just by interaction date. Ignored if prefer_forwards == trueoffset- Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of resultslimit- The maximum number of story interactions to returnclient_id- The client id to send the request to