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

问题描述 投票:0回答:1

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

api label blogger
1个回答
5
投票

Post Resource 文档 指出

labels
属性是一个列表。你的有效负载可能应该是这样的:

var payload = {
  "title"   : "This is the post title2",
  "content" : "This is <b>HTML</b> post2",
  "labels"  : [
                "test_post",
                "test",
                "post"
              ]
};
© www.soinside.com 2019 - 2024. All rights reserved.