使用 Google Api 将类别添加到 Blogger?

发布于 2024-10-14 01:19:37 字数 121 浏览 4 评论 0原文

我正在使用 Zend Google API 发布到我的博主 (Blogspot) 博客。我只能输入标题和内容,但我不知道如何添加类别(也称为“标签”)。 有没有办法使用 Zend Api 向博主发布类别?

谢谢!

I am using the Zend Google API for posting to my blogger (Blogspot) Blog. I can enter only the Title and Content but I don't know how to add categories (also known as "Labels").
Is there a way to use the Zend Api to post to blogger with Categories?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱她像谁 2024-10-21 01:19:37

http://groups.google.com /group/bloggerdev/browse_thread/thread/84053cb152af6423/e76330903c5061f7?lnk=gst&q=category

$labels = $entry->getCategory(); 
$newLabel = $gdClient->newCategory('testlabel2', 'http://www.blogger.com/atom/ns#'); 
$labels[] = $newLabel; // Append the new label to the list of labels. 
$entry->setCategory($labels); 

http://groups.google.com/group/bloggerdev/browse_thread/thread/84053cb152af6423/e76330903c5061f7?lnk=gst&q=category

$labels = $entry->getCategory(); 
$newLabel = $gdClient->newCategory('testlabel2', 'http://www.blogger.com/atom/ns#'); 
$labels[] = $newLabel; // Append the new label to the list of labels. 
$entry->setCategory($labels); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文