Blogger API - 如何在插入新帖子时添加标签?

时间:2016-08-18 09:26:34

标签: api label blogger

我正在尝试使用下面的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示例,我仍然没有成功。

1 个答案:

答案 0 :(得分:5)

Post Resource documentation表示labels属性是一个列表。您的有效负载应该如下所示:

var payload = {
  "title"   : "This is the post title2",
  "content" : "This is <b>HTML</b> post2",
  "labels"  : [
                "test_post",
                "test",
                "post"
              ]
};