Blogger API Json 中的 "id" 表示什么?

What did "id" in Blogger API Json denotes?

我需要在 Blogger api 中进行一些小的说明。 Json 文件中有两个 id,一个表示博客的 ID,下一个表示什么。 1) 是否有任何操作来输入 id 值。 2)我可以使用随机数吗? 3) 我可以为所有 id 使用相同的值吗?

{
  "kind": "blogger#post",
  "id"  : "???????????????????"
  "blog": {
    "id": "###################"
  },
  "title": "Post One",
  "content": "With <b>exciting</b> content..."
},
{
  "kind": "blogger#post",
  "id"  : "???????????????????"
  "blog": {
    "id": "###################"
  },
  "title": "Post Two",
  "content": "With <b>exciting</b> content..."
}

您可以使用任何您想要的值。没关系,因为 Blogger 会在不考虑您设置的值的情况下生成 post ID。 是的,您可以多次使用相同的值而不会出现任何问题。