Skip to main content

Standard Interface

reactToPost

This method allows you to react to a post using any available reaction type.


try {
  const workflowId = await linkedapi.reactToPost.execute({
    postUrl: "https://www.linkedin.com/posts/username_activity-id",
    type: "like"
  });
  
  const { errors } = await linkedapi.reactToPost.result(workflowId);
  
  // The list of possible execution errors is below
  if (errors && errors.length > 0) {
    console.warn('Workflow completed with execution errors:');
    errors.forEach(error => {
      console.warn(` - Type: ${error.type}, Message: ${error.message}`);
    });
  } else {
    console.log('Workflow completed successfully.');
  }
} catch (e) {
  // A list of all critical errors can be found here:
  // https://linkedapi.io/sdks/handling-results-and-errors/#handling-critical-errors
  if (e instanceof LinkedApiError) {
    console.error(`Critical Error - Type: ${e.type}, Message: ${e.message}`);
  } else {
    console.error('An unexpected, non-API error occurred:', e);
  }
}

# Python SDK is coming soon!
#
# You can always use Linked API through HTTP
# https://linkedapi.io/docs/

// Go SDK is coming soon!
//
// You can always use Linked API through HTTP
// https://linkedapi.io/docs/

Params

  • postUrl – LinkedIn URL of the post to react.
  • type – enum describing the reaction type.
    • like – standard "like".
    • celebrate – to celebrate an achievement.
    • support – to show support.
    • love – to express love or admiration.
    • insightful – to appreciate insightful content.
    • funny – to react to something humorous.

Data

The method doesn't return any data.

Errors

  • postNotFound – provided URL is not an existing LinkedIn post.