ページの編集

    ページを編集します。

    APIへのすべてのリクエストには、APIトークンが必要です。トークンは、APIプラグインの設定で確認できます。

    管理パネル > ブラグイン > API > APIトークン

    コンテンツを書き込むためのAPIへのすべてのリクエストは、認証トークンを提供する必要があります。このトークンを取得するには、管理者ロールを持つユーザーが必要です。ユーザープロファイルから認証トークンを取得します。

    管理パネル > 管理 > ユーザー > {ユーザー名} > セキュリティ > 認証トークン

    HTTPリクエスト

    PUT /api/pages/{key}

    パラメータ

    キー デフォルト値
    required token string APIトークン
    required authentication string 認証トークン
    title string ページタイトル
    content string ページ内容
    tags string ページタグ
    type string ページタイプ
    date string ページ日付
    dateModified string ページ修正日
    position string ページ位置
    coverImage string ページカバー画像
    category string ページカテゴリー
    template string ページテンプレート
    noindex string noindexページ
    nofollow string nofollowページ
    noarchive string noarchiveページ

    レスポンス

    HTTP Code: 200
    Content-Type: application/json
    Body:
    {
        "status": "0",
        "message": "Page edited.",
        "data": {
            "key": "<page key>"
        }
    }

    CURLコマンド例

    以下のcurlの例は、キーmy-dogを持つページを編集する例です。

    ファイルdata.jsonの内容

    {
        "token": "24a8857ed78a8c89a91c99afd503afa7",
        "authentication": "193569a9d341624e967486efb3d36d75",
        "title": "My dog",
        "content": "Content of the page here, support Markdown code and HTML code."
    }

    コマンドを実行し、data.jsonファイルを添付します。

    $ curl  -X PUT \
        -H "Content-Type: application/json" \
        -d @data.json \
        "https://www.example.com/api/pages/my-dog"

    レスポンス本体

    {
        "status": "0",
        "message": "Page edited.",
        "data": {
            "key": "my-dog"
        }
    }

    Bludit Documentation Powered by Bludit