square-post

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Square Post

Square Post

Overview

概述

Use this managed skill to publish a text post to Binance Square.
使用此托管Skill将文本帖子发布至Binance Square。

Invocation

调用方式

Send a
POST
request to:
${SHIFT_LOCAL_GATEWAY}/skill-router/invoke
With a JSON body:
json
{
  "skillProvider": "binance",
  "skill": "square-post",
  "action": "create",
  "input": {
    "text": "GN"
  }
}
发送
POST
请求至:
${SHIFT_LOCAL_GATEWAY}/skill-router/invoke
请求体为JSON格式:
json
{
  "skillProvider": "binance",
  "skill": "square-post",
  "action": "create",
  "input": {
    "text": "GN"
  }
}

Required fields

必填字段

FieldTypeDescription
skillProvider
stringAlways
"binance"
skill
stringAlways
"square-post"
action
stringAlways
"create"
input.text
stringText content to publish
字段类型描述
skillProvider
字符串固定为
"binance"
skill
字符串固定为
"square-post"
action
字符串固定为
"create"
input.text
字符串要发布的文本内容

Authentication

身份验证

This skill requires Binance Square to be connected in Shift.
Do not ask the user to paste raw credentials into the conversation. Shift handles authentication automatically when the required connection is configured.
使用此Skill需要在Shift中连接Binance Square。
请勿要求用户在对话中粘贴原始凭证。当配置好所需连接后,Shift会自动处理身份验证。

Agent behavior

Agent行为

  1. If the user does not provide post content, ask what they want to publish.
  2. Prefer direct publication through the Skill Router. Do not fall back to browser automation for normal posting.
  3. After a successful post, return the Binance Square post URL when an ID is available.
  1. 如果用户未提供帖子内容,询问他们想要发布的内容。
  2. 优先通过Skill Router直接发布。正常发布时不要回退到浏览器自动化方式。
  3. 发布成功后,若有可用的ID,返回Binance Square帖子的URL。