1

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

谢谢!

4

1 回答 1

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); 
于 2011-05-26T14:27:15.000 回答