Manage a LinkedIn presence for professional content and social interactions. Create posts and articles, manage comments and engagement, handle media, and search ad targeting options.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure LinkedIn API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect LinkedIn |
|---|---|---|
| :---: | :---: | :---: |
| !Install | !Pair | App-specific connection GIF coming soon |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ LinkedIn API │
│ (User Chat) │ │ (OAuth) │ │ (v2) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect LinkedIn│ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ LinkedIn │
│ File │ │ Auth │ │ Social │
└──────────┘ └──────────┘ └──────────┘
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for LinkedIn again."
# Get your LinkedIn profile info
clawlink_call_tool --tool "linkedin_get_my_info" --params '{}'
# Create a post
clawlink_call_tool --tool "linkedin_create_linked_in_post" --params '{"text": "Hello from OpenClaw!"}'
# Get images
clawlink_call_tool --tool "linkedin_get_images" --params '{}'
All LinkedIn tool calls are authenticated automatically by ClawLink using the user's connected LinkedIn account.
No API key is required in chat. ClawLink stores the OAuth token securely and injects it into every LinkedIn API request on the user's behalf.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for linkedin in the list.
clawlink_list_tools --integration linkedin
Response: Returns the live tool catalog for LinkedIn.
If LinkedIn tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration linkedin| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
linkedin_get_my_info | Get authenticated user's profile (name, headline, picture, details) | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
linkedin_create_linked_in_post | Create a new post on LinkedIn (personal or organization) | Write |
linkedin_create_article_or_url_share | Share a link with optional commentary as an article | Write |
linkedin_delete_linked_in_post | Delete a specific post by share_id | Write |
linkedin_delete_post | Delete a post using Posts API (supports ugcPost and share URN formats) | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
linkedin_create_comment_on_post | Create a first-level or nested comment on a post | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
linkedin_get_image | Get details of a single image by URN | Read |
linkedin_get_images | Get image metadata including download URLs, status, dimensions | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
linkedin_get_ad_targeting_facets | Get available ad targeting facets (locations, industries, job functions) | Read |
linkedin_search_ad_targeting_entities | Search targeting entities (geographics, job titles, industries) | Read |
clawlink_call_tool --tool "linkedin_get_my_info" \
--params '{}'
clawlink_call_tool --tool "linkedin_create_linked_in_post" \
--params '{"text": "Excited to share our latest update! What do you think?"}'
clawlink_call_tool --tool "linkedin_create_comment_on_post" \
--params '{"author": "urn:li:person:PROFILE_ID", "message": {"text": "Great post!"}, "post_id": "POST_ID"}'
clawlink_call_tool --tool "linkedin_get_images" \
--params '{}'
clawlink_call_tool --tool "linkedin_search_ad_targeting_entities" \
--params '{"type": "location", "keywords": "San Francisco"}'
clawlink_list_integrations to confirm LinkedIn is connected.clawlink_list_tools --integration linkedin to see the live catalog.clawlink_search_tools with a short query and integration linkedin.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → search → describe → call │
│ │
│ Example: Get profile → Get images → Show results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ list → get → describe → preview → confirm → call │
│ │
│ Example: Preview post create → User approves → Execute │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.w_organization_social scope with ADMINISTRATOR, DIRECT_SPONSORED_CONTENT_POSTER, or CONTENT_ADMIN role.w_member_social scope.| Status / Error | Meaning |
|---|---|
| ---------------- | --------- |
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration linkedin. |
| Missing connection | LinkedIn is not connected. Direct the user to https://claw-link.dev/dashboard?add=linkedin. |
| Permission error | The authenticated account lacks the required scope for this operation. |
| Post not found | The post ID does not exist or is not accessible. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
```bash
openclaw plugins list
```
/new as a standalone message to reload the catalog.```bash
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
```
/new again and retry.Powered by ClawLink — an integration hub for OpenClaw
共 2 个版本