get_cookies

get_cookies只读扩展
获取 Cookies

Call via POST http://127.0.0.1:3000/get_cookies (JSON params as the body) or WebSocket.

Parameters

Param Type Required Default Description
domain string "qun.qq.com"

Returns (data)

{ cookies }:指定域名的 Cookie 字符串。

Every response is wrapped in the standard envelope: { "status": "ok", "retcode": 0, "data": ... }. The table below describes data.

Field Type Required Description
cookies string 该域名的 Cookie 字符串
Raw JSON Schema
{
  "type": "object",
  "properties": {
    "cookies": {
      "type": "string",
      "description": "该域名的 Cookie 字符串"
    }
  },
  "required": [
    "cookies"
  ]
}

Examples

curl
Python
JavaScript
Go
SnowLuma SDK
curl -X POST http://127.0.0.1:3000/get_cookies \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer <access-token>' \
  -d '{"domain":"qun.qq.com"}'
Using an AI assistant?

MCP-capable clients can discover and call this action directly — no hand-written HTTP. See MCP.