使用Google Api向Blogger添加类别?

时间:2011-01-26 11:32:44

标签: php api blogger blogspot

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

谢谢!

1 个答案:

答案 0 :(得分:1)

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);