Power CMS XのAPIでトークンをどこにつけるのさ! (X-PCMSX-Authorization)

X-PCMSX-Authorization これをheaderに入れて値はAPI Tokenを入れればOKだった。 

ドキュメント見てもほとんど記載がなくて探すのに苦労した・・・

「認証付きリクエスト」って記載はあるけど、ドキュメント載ってないよね?

下記がインサートサンプル
----
curl --location 'http://hogehoge.co.jp/api/v1/1/entry/insert' \
--header 'X-PCMSX-Authorization: tokentokentokentokentokentokentoken' \
--header 'Content-Type: application/json' \
--data '{
    "title": "Welcome!",
    "text": "本文本文本文本文本文本文本文本文",
    "text_format": "richtext",
    "assets": [
        {
            "id": 26
        }
    ],
    "excerpt": "Our StoryLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
    "categories": [
        {
            "id": 1
        }
    ],
    "tags": [
        {
            "id": 6
        }
    ],
    "basename": "powercmsx",
    "status": 4,
    "has_deadline": 0,
    "published_on": "2021-09-01 12:47:46",
    "allow_comment": 0
}'
----

#Power CMS X
#API
#Token
#Key
#Authorization

コメント

このブログの人気の投稿

【iOS】SwiftでCGAffineTransformから角度・ラジアン・度数・スケールを計算する方法

【Android】WebViewのズームボタン(ピンチイン・ピンチアウト)を非表示にする方法

【iOS】UILabelでヒラギノフォントの上下が切れる問題と対処法