在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用token-status
星标3
分支0
更新时间2026年3月27日 05:16
Check LinkedIn OAuth token health
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Check LinkedIn OAuth token health
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
[FUTURE] Update operating configuration via HMAC-signed webhook to n8n
[FUTURE] Discover LinkedIn feed content and engage with community via comments and likes
Draft, review, and publish LinkedIn posts via HMAC-signed webhook to n8n
Query past LinkedIn activity and present formatted summaries
| name | token-status |
| description | Check LinkedIn OAuth token health |
| requires | {"env":["N8N_WEBHOOK_SECRET"],"bins":["curl","jq","openssl"]} |
When the operator asks "check token status", "how's the token?", or similar, use this skill.
WEBHOOK_URL="http://localhost:5678/webhook/token-check"
TIMESTAMP=$(date +%s)
BODY='{"action":"check_token"}'
SIGNATURE="sha256=$(echo -n "$BODY" | openssl dgst -sha256 -hmac "$N8N_WEBHOOK_SECRET" | awk '{print $2}')"
RESPONSE=$(curl -s -X POST "$WEBHOOK_URL" \
-H "Content-Type: application/json" \
-H "X-Signature: $SIGNATURE" \
-H "X-Timestamp: $TIMESTAMP" \
-d "$BODY")
LinkedIn Integration Status:
OAuth Token: [valid/expiring_soon/expired]
Days remaining: [N]
Granted: [date]
Expires: [date]
[If expiring_soon]: Token expires in [N] days. Please re-authorize soon.
[If expired]: Token has expired. Please re-authorize to resume posting.