【问题标题】:JSON format in Google developers bloggerGoogle 开发者博客中的 JSON 格式
【发布时间】:2017-02-02 06:00:21
【问题描述】:

在博主中插入帖子时https://developers.google.com/oauthplayground 的 JSON 格式是什么?

【问题讨论】:

    标签: blogger oauth2-playground


    【解决方案1】:

    通过 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 Explorer

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2020-01-26
      • 2010-12-05
      • 2012-04-12
      • 1970-01-01
      • 2015-01-14
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多