linkedin

Query LinkedIn — profile, connections, posts, and organization pages via the REST API.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "linkedin" with this command: npx skills add thinkfleetai/thinkfleet-engine/thinkfleetai-thinkfleet-engine-linkedin

LinkedIn

Query profile, posts, and organization data via the LinkedIn API.

Environment Variables

  • LINKEDIN_ACCESS_TOKEN - OAuth 2.0 access token

Get profile

curl -s -H "Authorization: Bearer $LINKEDIN_ACCESS_TOKEN" \
  "https://api.linkedin.com/v2/userinfo" | jq '{sub, name, email, picture}'

Get organization

curl -s -H "Authorization: Bearer $LINKEDIN_ACCESS_TOKEN" \
  "https://api.linkedin.com/v2/organizations/ORG_ID" | jq '{id, localizedName, vanityName}'

Create post

curl -s -X POST -H "Authorization: Bearer $LINKEDIN_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  "https://api.linkedin.com/v2/ugcPosts" \
  -d '{"author":"urn:li:person:PERSON_ID","lifecycleState":"PUBLISHED","specificContent":{"com.linkedin.ugc.ShareContent":{"shareCommentary":{"text":"Post content here"},"shareMediaCategory":"NONE"}},"visibility":{"com.linkedin.ugc.MemberNetworkVisibility":"PUBLIC"}}' | jq '{id}'

Notes

  • Always confirm before creating posts.
  • Scopes needed vary by endpoint (r_liteprofile, w_member_social, etc.).

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

local-whisper

No summary provided by upstream source.

Repository SourceNeeds Review
General

kagi-search

No summary provided by upstream source.

Repository SourceNeeds Review
General

feishu-bridge

No summary provided by upstream source.

Repository SourceNeeds Review
General

bambu-local

No summary provided by upstream source.

Repository SourceNeeds Review