1
ブロガーに投稿を投稿するとhttps://developers.google.com/oauthplaygroundのJSON形式とは何ですか?JSON形式のGoogle開発者ブロガー
ブロガーに投稿を投稿するとhttps://developers.google.com/oauthplaygroundのJSON形式とは何ですか?JSON形式のGoogle開発者ブロガー
次のようにBloggerのAPI経由で新しいポストを挿入するための基本的なJSON形式がある -
{
"kind": "blogger#post",
"content": "Blog Content, can contain HTML",
"blog": {
"id": "BLOGID"
},
"title": "Blog Title",
"labels": [
"Label"
],
"titleLink": "https://google.com",
"status": "LIVE"
"readerComments": "ALLOW",
"location": {
"lat": 0,
"lng": 0,
"name": "Place"
}
}
あなたはhttps://developers.google.com/blogger/docs/3.0/reference/posts/insert
でこのエンドポイントのAPIエクスプローラを使用して試すことができます