如何查看Google幻灯片背后的JSON?

时间:2017-10-30 19:19:36

标签: google-slides-api google-slides

我想知道可以通过编程方式更改幻灯片的哪些元素;了解正在发生的事情的一种方法是查看幻灯片背后的JSON。我有幻灯片ID,但除了标准的wysiwyg编辑器之外,还没有弄清楚如何以任何方式查看它。

1 个答案:

答案 0 :(得分:0)

对于整个演示文稿,您可以查看this documentation

JSON表示

{
  "presentationId": string,
  "pageSize": {
    object(Size)
  },
  "slides": [
    {
      object(Page)
    }
  ],
  "title": string,
  "masters": [
    {
      object(Page)
    }
  ],
  "layouts": [
    {
      object(Page)
    }
  ],
  "locale": string,
  "revisionId": string,
  "notesMaster": {
    object(Page)
  },
}

对于每个页面,您可以参考REST Resource: presentations.pages

JSON表示

{
  "objectId": string,
  "pageType": enum(PageType),
  "pageElements": [
    {
      object(PageElement)
    }
  ],
  "revisionId": string,
  "pageProperties": {
    object(PageProperties)
  },

  // Union field properties can be only one of the following:
  "slideProperties": {
    object(SlideProperties)
  },
  "layoutProperties": {
    object(LayoutProperties)
  },
  "notesProperties": {
    object(NotesProperties)
  },
  "masterProperties": {
    object(MasterProperties)
  },
  // End of list of possible types for union field properties.
}