← 返回 Skills 市场
81
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install apmzoom-ids
功能描述
APM 플랫폼의 인증 센터 API 모음. 계정/이메일/휴대폰 기반 로그인, 관리자/공급업체/사용자 로그인, 토큰 갱신, 인증 코드 발송, 토큰 검증 등 19개 엔드포인트를 포함합니다. 요청 헤더(v/p/t/lang), MD5 서명 규칙, authcode 헤더(HH + access_...
使用说明 (SKILL.md)
APM 인증 센터 API
APM 플랫폼의 인증 센터 API 모음. 계정/이메일/휴대폰 기반 로그인, 관리자/공급업체/사용자 로그인, 토큰 갱신, 인증 코드 발송, 토큰 검증 등 19개 엔드포인트를 포함합니다. 요청 헤더(v/p/t/lang), MD5 서명 규칙, authcode 헤더(HH + access_token) 사용법을 문서화. Base URL: https://44k2t5n59e.execute-api.ap-northeast-2.amazonaws.com
공통 규약
- Base URL:
https://44k2t5n59e.execute-api.ap-northeast-2.amazonaws.com - 요청 헤더:
v=7.0.1,p=1,t=\x3Cunix초>,lang=zh-cn - 인증 헤더:
authcode: "HH " + access_token(로그인 계열 제외) - 서명:
sign = MD5(\x3Cparams> + \x3Csalt>).toUpperCase()— 엔드포인트별 salt는 각 문서 참조 - 성공 코드:
code=100, 결과는result필드 - 페이지네이션:
last_update_time커서 방식,page_size=20
엔드포인트 목록 (19개)
ids_admin_app_tool_login— 관리자 APP 도구 로그인 ·POST /ids/admin_app_tool_loginids_admin_desk_tool_login— 관리자 데스크탑 도구 로그인 ·POST /ids/admin_desk_tool_loginids_admin_login— 관리자 로그인 ·POST /ids/admin_loginids_captcha_img— 인증 코드 이미지 획득 ·GET /ids/captcha_imgids_m_login_account— 판매자 로그인-계정/비밀번호 ·POST /ids/m_login_accountids_m_login_email— 판매자 로그인-이메일 인증 코드 ·POST /ids/m_login_emailids_m_login_tel— 판매자 로그인-휴대폰 번호 인증 코드 ·POST /ids/m_login_telids_refresh_token— access_token 갱신 ·POST /ids/refresh_tokenids_send_email_code— 이메일 인증 코드 발송 ·POST /ids/send_email_codeids_send_email_code_r— 이메일 인증 코드 발송(회원가입) ·POST /ids/send_email_code_rids_send_tel_code— SMS 인증 코드 발송 ·POST /ids/send_tel_codeids_send_tel_code_r— SMS 인증 코드 발송(회원가입) ·POST /ids/send_tel_code_rids_suppliers_login— 공급업체 로그인 ·POST /ids/suppliers_loginids_u_login_account— 사용자 로그인-계정/비밀번호 ·POST /ids/u_login_accountids_u_login_email— 사용자 로그인-이메일 인증 코드 ·POST /ids/u_login_emailids_u_login_tel— 사용자 로그인-휴대폰 번호 인증 코드 ·POST /ids/u_login_telids_u_login_to_ce— 사용자 로그인-계정/비밀번호(CE) ·POST /ids/u_login_to_ceids_verfy_t— Token 검증 ·POST /ids/verfy_tids_verfy_ttoken— Token 검증 ·POST /ids/verfy_ttoken
사용법
- 필요한 엔드포인트 문서를 확인 (파일명 = 엔드포인트 이름)
ids_*_login_*중 하나로access_token획득 (APM_USER_TOKEN 환경변수에 저장)- 요청 헤더에
authcode: "HH " + $APM_USER_TOKEN추가 - 해당 문서의 서명 규칙에 따라
sign계산 후 호출
安全使用建议
This skill is mostly documentation for an authentication API and asks only for one token (APM_USER_TOKEN). Before installing: (1) verify that the Base URL (the execute-api.amazonaws.com hostname) is legitimately operated by the project shown on the GitHub homepage — an unrelated API host is a red flag; (2) be cautious about storing a long-lived access token in an environment variable accessible to agents — prefer short-lived tokens or provide credentials only at runtime; (3) confirm you trust the skill owner to handle any tokens you expose, since the agent will use the token to call the remote API; (4) because this is instruction-only, there is no install footprint, but double-check that behavior (headers, signing) matches your service contract. If you cannot verify ownership of the API endpoint or are uncomfortable exposing APM_USER_TOKEN to the agent, do not install or grant the env var.
能力评估
Purpose & Capability
Name/description describe an authentication API and the skill's files document 19 auth endpoints. The single required env var (APM_USER_TOKEN) is consistent with needing an access token for authenticated calls. However, the Base URL is an AWS execute-api domain (44k2t5n59e.execute-api.ap-northeast-2.amazonaws.com) that does not obviously match the declared GitHub homepage; you should confirm the endpoint is owned by the project/operator.
Instruction Scope
SKILL.md and per-endpoint docs only describe constructing headers, MD5 signatures, and calling endpoints. There are no instructions to read unrelated local files, access other credentials, or send data to third-party endpoints beyond the documented Base URL. The docs do instruct storing/reading an access token in the APM_USER_TOKEN env var and using it as authcode for calls.
Install Mechanism
Instruction-only skill with no install spec and no code files — no software is downloaded or written to disk by an installer step.
Credentials
Only one env var (APM_USER_TOKEN) is required, which is proportionate for an API client. Two small concerns: (1) the docs instruct storing the access token into that env var (persisting a credential), and (2) the skill requires the env var as a declared requirement even though tokens can be obtained via the login endpoints. Both are explainable but worth reviewing before granting an agent access to that env var.
Persistence & Privilege
The skill does not request always:true or other privileged persistence. It is user-invocable and can be used autonomously by the agent (platform default), which is expected for skills; nothing here elevates privilege beyond normal.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install apmzoom-ids - 安装完成后,直接呼叫该 Skill 的名称或使用
/apmzoom-ids触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: 19 authentication endpoints (login/token/captcha/verify) for APM platform
元数据
常见问题
APM 인증 센터 API 是什么?
APM 플랫폼의 인증 센터 API 모음. 계정/이메일/휴대폰 기반 로그인, 관리자/공급업체/사용자 로그인, 토큰 갱신, 인증 코드 발송, 토큰 검증 등 19개 엔드포인트를 포함합니다. 요청 헤더(v/p/t/lang), MD5 서명 규칙, authcode 헤더(HH + access_... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 81 次。
如何安装 APM 인증 센터 API?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install apmzoom-ids」即可一键安装,无需额外配置。
APM 인증 센터 API 是免费的吗?
是的,APM 인증 센터 API 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
APM 인증 센터 API 支持哪些平台?
APM 인증 센터 API 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 APM 인증 센터 API?
由 apmzoom(@apmzoom)开发并维护,当前版本 v1.0.0。
推荐 Skills