Google开发者博客中的JSON格式

问题描述:

当您在博客中插入帖子时,https://developers.google.com/oauthplayground的JSON格式是什么?Google开发者博客中的JSON格式

插入透过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浏览器