I need a small clarification in Blogger api. There are two id's in Json file, one denotes the ID of the blog but what next one denotes. 1) Is there any manipulation to enter a id value. 2) Can I use random numbers. 3) Can I use a same value for all 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..."
}
CodePudding user response:
You can use any value you want, It does not metter because Blogger will generate the post id without consideration to the value you set. And yeah you can use the same value multiple times without any problem.