Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

line-client线路客户端

Agent Skill

line-client 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

18,911

周安装

765

GitHub Stars

3

下载量

5,936
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:line-client(线路客户端)
来源仓库:https://github.com/2manslkh/line-client
安装命令:
openclaw skills install line-client
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install line-client

简介

line-client 通过浏览器网关接入 LINE 消息系统。

  • 实现消息收发、个人资料管理及反应操作。
  • 采用二维码扫码完成设备绑定流程。安装时按仓库提供的命令执行,建议先在测试环境验证依赖、命令权限和文件改动范围。
  • 注意遵守平台消息发送频率限制规则。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
line-client
description
LINE messaging integration via Chrome extension gateway. Send/read LINE messages, manage contacts, groups, profile, and reactions. Authenticate with QR code login. Provides HMAC-signed API access through the Chrome extension gateway (line-chrome-gw.line-apps.com).

LINE Client Skill

Full LINE messaging client via the Chrome extension gateway JSON API.

Repo & Files

  • Repo: /data/workspace/line-client (github.com/2manslkh/line-api)
  • Main client: src/chrome_client.pyLineChromeClient
  • QR login: src/auth/qr_login.pyQRLogin
  • HMAC signer: src/hmac/signer.js (Node.js, auto-starts on port 18944)
  • Token storage: ~/.line-client/tokens.json
  • Certificate cache: ~/.line-client/sqr_cert
  • WASM files: lstm.wasm + lstmSandbox.js (required, in repo root)

Quick Start

import json
from pathlib import Path
from src.chrome_client import LineChromeClient

tokens = json.loads((Path.home() / ".line-client" / "tokens.json").read_text())
client = LineChromeClient(auth_token=tokens["auth_token"])

# Send a message
client.send_message("U...", "Hello!")

# Get profile
profile = client.get_profile()

Tokens expire in ~7 days. If expired (APIError(10051)), re-run QR login.

QR Login (Authentication)

QR login requires user interaction: scan QR on phone + enter PIN.

from src.hmac import HmacSigner
from src.auth.qr_login import QRLogin
import qrcode

signer = HmacSigner(mode="server")
login = QRLogin(signer)
result = login.run(
    on_qr=lambda url: send_qr_image_to_user(qrcode.make(url)),
    on_pin=lambda pin: send_pin_to_user_IMMEDIATELY(pin),  # TIME SENSITIVE!
    on_status=lambda msg: print(msg),
)
# result.auth_token, result.mid, result.refresh_token

Critical: The PIN must reach the user within ~60 seconds. Send it the instant on_pin fires.

QR Login State Machine

  1. createSession → session ID
  2. createQrCode → callback URL (append ?secret={curve25519_pubkey}&e2eeVersion=1)
  3. checkQrCodeVerified — poll until scan (uses X-Line-Session-ID, no origin header)
  4. verifyCertificate — MUST be called even if it fails (required state transition!)
  5. createPinCode → 6-digit PIN (skip if cert verified in step 4)
  6. checkPinCodeVerified — poll until user enters PIN
  7. qrCodeLoginV2 → JWT token + certificate + refresh token

Server-Side Login Script

python scripts/qr_login_server.py /tmp/qr.png

Emits JSON events on stdout: {"event": "qr", "path": "...", "url": "..."}, {"event": "pin", "pin": "123456"}, {"event": "done", "mid": "U..."}.

All API Methods

Contacts & Friends

MethodArgsDescription
get_profile()Get your own profile (displayName, mid, statusMessage, etc.)
get_contact(mid)mid: strGet a single contact's profile
get_contacts(mids)mids: list[str]Get multiple contacts
get_all_contact_ids()List all friend MIDs
find_contact_by_userid(userid)userid: strSearch by LINE ID
find_and_add_contact_by_mid(mid)mid: strAdd friend by MID
find_contacts_by_phone(phones)phones: list[str]Search by phone numbers
add_friend_by_mid(mid)mid: strAdd friend (RelationService)
get_blocked_contact_ids()List blocked MIDs
get_blocked_recommendation_ids()List blocked recommendations
block_contact(mid)mid: strBlock a contact
unblock_contact(mid)mid: strUnblock a contact
block_recommendation(mid)mid: strBlock a friend suggestion
update_contact_setting(mid, flag, value)mid, flag: int, value: strUpdate contact setting (e.g. mute)
get_favorite_mids()List favorited contact MIDs
get_recommendation_ids()List friend suggestions

Messages

MethodArgsDescription
send_message(to, text, ...)to: str, text: str, reply_to: str (opt)Send a text message. Supports replies via reply_to=message_id
unsend_message(message_id)message_id: strUnsend/delete a sent message
get_recent_messages(chat_id, count=50)chat_id: strGet latest messages in a chat
get_previous_messages(chat_id, end_seq, count=50)chat_id, end_seq: intPaginated history (older messages)
get_messages_by_ids(message_ids)message_ids: list[str]Fetch specific messages
get_message_boxes(count=50)Get chat list with last message (inbox view)
get_message_boxes_by_ids(chat_ids)chat_ids: list[str]Get specific chats with last message
get_message_read_range(chat_ids)chat_ids: list[str]Get read receipt info
send_chat_checked(chat_id, last_message_id)chat_id, last_message_id: strMark messages as read
send_chat_removed(chat_id, last_message_id)chat_id, last_message_id: strRemove chat from inbox
send_postback(to, postback_data)to, postback_data: strSend postback (bot interactions)

Chats & Groups

MethodArgsDescription
get_chats(chat_ids, with_members=True, with_invitees=True)chat_ids: list[str]Get chat/group details
get_all_chat_mids()List all chat MIDs (groups + invites)
create_chat(name, target_mids)name: str, target_mids: list[str]Create a new group chat
accept_chat_invitation(chat_id)chat_id: strAccept group invite
reject_chat_invitation(chat_id)chat_id: strReject group invite
invite_into_chat(chat_id, mids)chat_id: str, mids: list[str]Invite users to group
cancel_chat_invitation(chat_id, mids)chat_id: str, mids: list[str]Cancel pending invites
delete_other_from_chat(chat_id, mids)chat_id: str, mids: list[str]Kick members from group
leave_chat(chat_id)chat_id: strLeave a group chat
update_chat(chat_id, updates)chat_id: str, updates: dictUpdate group name/settings
set_chat_hidden_status(chat_id, hidden)chat_id: str, hidden: boolArchive/unarchive a chat
get_rooms(room_ids)room_ids: list[str]Get legacy room info
invite_into_room(room_id, mids)room_id: str, mids: list[str]Invite to legacy room
leave_room(room_id)room_id: strLeave legacy room

Reactions

MethodArgsDescription
react(message_id, reaction_type)message_id: str, type: intReact to a message. Types: 2=like, 3=love, 4=laugh, 5=surprised, 6=sad, 7=angry
cancel_reaction(message_id)message_id: strRemove your reaction

Profile & Settings

MethodArgsDescription
update_profile_attributes(attr, value, meta={})attr: int, value: strUpdate profile. Attrs: 2=DISPLAY_NAME, 16=STATUS_MESSAGE, 4=PICTURE_STATUS
update_status_message(message)message: strShortcut: update status message
update_display_name(name)name: strShortcut: update display name
get_settings()Get all account settings
get_settings_attributes(attr_bitset)attr_bitset: intGet specific settings
update_settings_attributes(attr_bitset, settings)attr_bitset: int, settings: dictUpdate settings

Polling & Events

MethodArgsDescription
get_last_op_revision()Get latest operation revision number
fetch_ops(count=50)Fetch pending operations (may long-poll)
poll()Generator yielding operations as they arrive
on_message(handler)handler: Callable(msg, client)Start polling thread, calls handler on new messages. Op types: 26=SEND_MESSAGE, 27=RECEIVE_MESSAGE
stop()Stop the polling thread

Other Services

MethodArgsDescription
get_server_time()Get LINE server timestamp
get_configurations()Get server configurations
get_rsa_key_info()Get RSA key for auth
issue_channel_token(channel_id)channel_id: strIssue channel token (LINE Login/LIFF)
get_buddy_detail(mid)mid: strGet official account info
report_abuse(mid, category=0, reason="")mid: strReport a user
add_friend_by_mid(mid)mid: strAdd friend (RelationService)
logout()Logout and invalidate token

MID Format

LINE identifies entities by MID:

  • U... or u... → User (toType=0)
  • C... or c... → Group chat (toType=2)
  • R... or r... → Room (toType=1)

The client auto-detects toType from the MID prefix when sending messages.

HMAC Signing

All API calls require X-Hmac header. The WASM signer handles this automatically:

  • Derives key from version "3.7.1" + access token via proprietary KDF (in lstm.wasm)
  • Signs path + body → base64 → X-Hmac
  • Server mode: ~13ms/sign (Node.js HTTP server on port 18944, auto-started)
  • Subprocess mode: ~2s/sign (fallback)

Error Handling

from src.chrome_client import APIError

try:
    client.send_message(mid, "test")
except APIError as e:
    print(e.code, e.api_message)
    # 10051 = session expired / invalid
    # 10052 = HTTP error from backend
    # 10102 = invalid arguments

Architecture

User's Phone (LINE app)
    ↕ (scan QR / enter PIN)
LINE Servers (line-chrome-gw.line-apps.com)
    ↕ (JSON REST + X-Hmac signing)
LineChromeClient (this repo)
    ↕ (WASM HMAC via Node.js signer)
lstm.wasm + lstmSandbox.js

The Chrome Gateway translates JSON ↔ Thrift internally. We never deal with Thrift binary — everything is clean JSON.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

81.82%
按下载量换算4,857

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills