ページの編集
ページを編集します。
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"
}
}