Longbridge Developers
立即開始

創建討論

在 社區創建一篇新討論。支持兩種內容類型:

類型titlebody 格式說明
post(默認)可選純文本Markdown 語法(如 **加粗**、# 標題)不會渲染,將作為字面字符顯示,類似發推文。
article必填Markdown服務端將 Markdown 轉為 HTML 展示,支持標題、表格、加粗、代碼塊等。

僅限 Longbridge 開戶且持有資產 的用戶才允許通過 Longbridge Developers 的 API 或 CLI 發布社區討論和回覆。否則返回 403。

正文中提到的標的代碼(如 700.HK、TSLA.US)會被平台自動識別並關聯為相關標的。tickers 字段用於補充正文中未顯式提及的標的。

⚠️ 請勿濫用此功能關聯與內容無關的標的,否則後台內容運營可能會限制發布,甚至有可能禁言。

頻率限制: 同一用戶每分鐘最多創建 3 篇,24 小時內最多 10 篇,超出返回 429。

⚠️ 以上頻率限制規則僅供參考,平台可能隨時進行內部調整。

>_ CLI
# 發佈 Tesla 相關話題
longbridge topic create --body "Tesla Q1 財報分析" --tickers TSLA.US
# 發佈 Apple 相關話題
longbridge topic create --body "Apple WWDC 前瞻" --tickers AAPL.US

Request

HTTP MethodPOST
HTTP URL/v1/content/topics

Request Body

NameTypeRequiredDescription
titlestring是(article 類型必填)標題。topic_type 為 article 時必填,post 時可省略。
bodystringYES正文。post 類型為純文本,Markdown 不渲染;article 類型支持 Markdown。
topic_typestringNO內容類型:post(純文本,默認)或 article(Markdown)
tickersstring[]NO關聯標的代碼,格式 \{symbol\}.\{market\},如 ["AAPL.US", "700.HK"],最多 10 個。注意: 正文中提到的標的代碼(如 700.HK、TSLA.US)會被平台自動識別並關聯,tickers 用於補充正文中未顯式提及的標的。
hashtagsstring[]NO討論標籤名稱列表,如 ["earnings", "fed"],最多 1 個

Request Example

# 短帖 — 純文本(默認),Markdown 不渲染
longbridge topic create --body "今天看好 700.HK"

# 短帖 + 關聯標的
longbridge topic create --body "NVDA GTC 看點" --tickers NVDA.US,700.HK

# 長文 — 支持 Markdown,必須填寫標題
longbridge topic create --title "我的分析" --body "**看好** 700.HK,因為..." --type article

# 長文 — 從 Markdown 文件讀取正文
longbridge topic create --title "Q4 財報前瞻" --body "$(cat analysis.md)" --type article

# JSON 輸出
longbridge topic create --body "測試帖" --format json
from longbridge.openapi import ContentContext, Config, OAuthBuilder

oauth = OAuthBuilder("your-client-id").build(lambda url: print("Visit:", url))
config = Config.from_oauth(oauth)
ctx = ContentContext(config)

# 短帖(純文本)
resp = ctx.create_topic(
    title="",
    body="今天看好 700.HK",
    topic_type="post",
    tickers=["700.HK"],
)
print(resp)

# 長文(Markdown,標題必填)
resp = ctx.create_topic(
    title="我的分析",
    body="**看好** 700.HK,因為...",
    topic_type="article",
    tickers=["700.HK"],
    license=1,
)
print(resp)
import asyncio
from longbridge.openapi import AsyncContentContext, Config, OAuthBuilder

async def main() -> None:
    oauth = await OAuthBuilder("your-client-id").build_async(lambda url: print("Visit:", url))
    config = Config.from_oauth(oauth)
    ctx = AsyncContentContext.create(config)

    resp = await ctx.create_topic(
        title="我的分析",
        body="**看好** 700.HK,因為...",
        topic_type="article",
        tickers=["700.HK"],
    )
    print(resp)

if __name__ == "__main__":
    asyncio.run(main())
const { Config, ContentContext, OAuth } = require('longbridge')

async function main() {
  const oauth = await OAuth.build("your-client-id", (_, url) => { console.log("Open this URL to authorize: " + url) })
  const config = Config.fromOAuth(oauth)
  const ctx = ContentContext.new(config)

  // 長文(Markdown,標題必填)
  const resp = await ctx.createTopic({
    title: "我的分析",
    body: "**看好** 700.HK,因為...",
    topicType: "article",
    tickers: ["700.HK"],
  })
  console.log(resp)
}
main().catch(console.error)
import com.longbridge.*;
import com.longbridge.content.*;

class Main {
    public static void main(String[] args) throws Exception {
        try (OAuth oauth = new OAuthBuilder("your-client-id").build(url -> System.out.println("Open to authorize: " + url)).get();
             Config config = Config.fromOAuth(oauth);
             ContentContext ctx = ContentContext.create(config)) {
            // 長文(Markdown,標題必填)
            CreateTopicOptions opts = new CreateTopicOptions("我的分析", "**看好** 700.HK,因為...")
                .setTopicType("article")
                .setTickers(new String[]{"700.HK"})
                .setLicense(1);
            OwnedTopic resp = ctx.createTopic(opts).get();
            System.out.println(resp);
        }
    }
}
use std::sync::Arc;
use longbridge::{oauth::OAuthBuilder, content::{ContentContext, CreateTopicOptions}, Config};

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let oauth = OAuthBuilder::new("your-client-id").build(|url| println!("Open this URL to authorize: {url}")).await?;
    let config = Arc::new(Config::from_oauth(oauth));
    let ctx = ContentContext::new(config);

    // 長文(Markdown,標題必填)
    let opts = CreateTopicOptions {
        title: "我的分析".to_string(),
        body: "**看好** 700.HK,因為...".to_string(),
        topic_type: Some("article".to_string()),
        tickers: Some(vec!["700.HK".to_string()]),
        hashtags: None,
        license: Some(1),
    };
    let resp = ctx.create_topic(opts).await?;
    println!("{:?}", resp);
    Ok(())
}
#include &lt;iostream&gt;
#include <longbridge.hpp>

#ifdef WIN32
#include <windows.h>
#endif

using namespace longbridge;
using namespace longbridge::content;

static void
run(const OAuth& oauth)
{
    Config config = Config::from_oauth(oauth);
    ContentContext ctx = ContentContext::create(config);

    // 長文(Markdown,標題必填)
    CreateTopicOptions opts;
    opts.title = "我的分析";
    opts.body = "**看好** 700.HK,因為...";
    opts.topic_type = "article";
    opts.tickers = {"700.HK"};

    ctx.create_topic(opts, [](auto res) {
        if (!res) { std::cout << "failed: " << *res.status().message() << std::endl; return; }
        std::cout << "created topic: " << res->id << std::endl;
    });
}

int main(int argc, char const* argv[]) {
#ifdef WIN32
    SetConsoleOutputCP(CP_UTF8);
#endif

    const std::string client_id = "your-client-id";
    OAuthBuilder(client_id).build(
    [](const std::string& url) {
        std::cout << "Open this URL to authorize: " << url << std::endl;
    },
    [](auto res) {
        if (!res) {
            std::cout << "authorization failed: " << *res.status().message() << std::endl;
            return;
        }
        run(*res);
    });

    std::cin.get();
    return 0;
}
package main

import (
	"context"
	"fmt"
	"log"

	"github.com/longbridge/openapi-go/config"
	"github.com/longbridge/openapi-go/oauth"
	"github.com/longbridge/openapi-go/content"
)

func main() {
	o := oauth.New("your-client-id").
		OnOpenURL(func(url string) { fmt.Println("Open this URL to authorize:", url) })
	if err := o.Build(context.Background()); err != nil {
		log.Fatal(err)
	}
	conf, err := config.New(config.WithOAuthClient(o))
	if err != nil {
		log.Fatal(err)
	}
	ctx, err := content.NewFromCfg(conf)
	if err != nil {
		log.Fatal(err)
	}
	// 長文(Markdown,標題必填)
	opts := content.CreateTopicOptions{
		Title:     "我的分析",
		Body:      "**看好** 700.HK,因為...",
		TopicType: "article",
		Tickers:   []string{"700.HK"},
	}
	resp, err := ctx.CreateTopic(context.Background(), opts)
	if err != nil {
		log.Fatal(err)
	}
	fmt.Printf("created topic: %s\n", resp.ID)
}

Response

Response Headers

  • Content-Type: application/json

Response Example

{
  "code": 0,
  "message": "success",
  "data": {
    "item": {
      "id": "39304657",
      "title": "我對蘋果的看法",
      "topic_type": "article",
      "tickers": ["AAPL.US"],
      "hashtags": ["earnings"],
      "created_at": "1742000000"
    }
  }
}

Response Status

StatusDescriptionSchema
200返回成功create_topic_response
403權限不足用戶未開戶或無資產
429頻率超限超過每分鐘或每日創建上限,請稍後重試
500內部錯誤None

Schemas

create_topic_response

NameTypeRequiredDescription
itemobjecttrue新建討論詳情
∟ idstringtrue討論 ID
∟ titlestringfalse標題
∟ descriptionstringfalse純文本摘要(由正文自動截取)
∟ bodystringfalse完整正文(article 類型為 Markdown)
∟ topic_typestringfalse內容類型,article 或 post
∟ tickersstring[]false關聯標的代碼
∟ hashtagsstring[]false討論標籤名稱列表
∟ imagesobject[]false附圖列表
∟∟ urlstringfalse原始圖片 URL
∟∟ smstringfalse小縮略圖 URL
∟∟ lgstringfalse大縮略圖 URL
∟ likes_countint32false點讚數
∟ comments_countint32false回覆數
∟ views_countint32false瀏覽數
∟ shares_countint32false分享數
∟ detail_urlstringfalse討論頁面直鏈
∟ authorobjectfalse作者信息
∟∟ member_idstringfalse作者 member ID
∟∟ namestringfalse作者暱稱
∟∟ avatarstringfalse作者頭像 URL
∟ created_atstringtrue創建時間,Unix 時間戳(秒)
∟ updated_atstringfalse最近更新時間,Unix 時間戳(秒)