我正在尝试使用 Blogger API v3.0 插入新的博客文章,下面是我的示例有效负载
var payload = {
"title" : "This is the post title2",
"content" : "This is <b>HTML</b> post2"
};
这按预期工作,但我需要在发布这些新帖子时插入标签,我检查了文档和谷歌,但没有帮助。我尝试过类似下面的东西
var payload = {
"title" : "This is the post title2",
"content" : "This is <b>HTML</b> post2",
"labels" : "test_post,test,post"
};
基于 v1.0 php 示例,我仍然没有成功。
labels
属性是一个列表。你的有效负载可能应该是这样的:
var payload = {
"title" : "This is the post title2",
"content" : "This is <b>HTML</b> post2",
"labels" : [
"test_post",
"test",
"post"
]
};