get_linkedin_user_posts
Retrieve LinkedIn posts for specific users using their URN identifier to access and analyze professional content and updates.
Instructions
Get LinkedIn posts for a user by URN (must include prefix, example: fsd_profile:ACoAAEWn01QBWENVMWqyM3BHfa1A-xsvxjdaXsY)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Max posts | |
timeout | No | Timeout in seconds | |
urn | Yes | User URN (must include prefix, example: fsd_profile:ACoAA...) |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 10,
"description": "Max posts",
"type": "number"
},
"timeout": {
"default": 300,
"description": "Timeout in seconds",
"type": "number"
},
"urn": {
"description": "User URN (must include prefix, example: fsd_profile:ACoAA...)",
"type": "string"
}
},
"required": [
"urn"
],
"type": "object"
}