> ## Documentation Index
> Fetch the complete documentation index at: https://docs.raydium.io/llms.txt
> Use this file to discover all available pages before exploring further.

# 在池上發佈評論

> 發佈新評論。需要 ray-token 標頭。



## OpenAPI

````yaml /zh-Hant/api-reference/openapi/launch-forum-v1.yaml post /comment
openapi: 3.0.3
info:
  title: Raydium 啟動論壇 API
  description: LaunchLab 池的討論 API。發佈及檢索代幣鑄造的評論。寫入操作需要 `ray-token` 標頭（來自 Auth API 的 JWT）。
  version: 1.0.0
servers:
  - url: https://launch-forum-v1.raydium.io
    description: Mainnet
  - url: https://launch-forum-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Comments
    description: 發佈和檢索池評論
  - name: Utilities
    description: 健康檢查
paths:
  /comment:
    post:
      tags:
        - Comments
      summary: 在池上發佈評論
      description: 發佈新評論。需要 ray-token 標頭。
      operationId: postComment
      parameters:
        - name: ray-token
          in: header
          required: true
          schema:
            type: string
          description: 來自 Auth API 的 JWT 令牌
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
                - poolId
                - text
                - wallet
              properties:
                poolId:
                  type: string
                  description: 池/鑄造 ID
                wallet:
                  type: string
                  description: 評論者錢包
                text:
                  type: string
                  description: 評論文本（最多 2000 字元）
                file:
                  type: string
                  format: binary
                  description: 可選圖像（最多 5MB）
      responses:
        '200':
          description: 評論發佈成功
        '400':
          description: 無效請求或內容違規

````