【发布时间】:2012-03-26 05:56:45
【问题描述】:
我正在使用 Zend Google API 向我的博主 (Blogspot) 博客发帖。我只能输入标题和内容,但我不知道如何添加类别(也称为“标签”)。 有没有办法使用 Zend Api 以类别发布到博客?
谢谢!
【问题讨论】:
我正在使用 Zend Google API 向我的博主 (Blogspot) 博客发帖。我只能输入标题和内容,但我不知道如何添加类别(也称为“标签”)。 有没有办法使用 Zend Api 以类别发布到博客?
谢谢!
【问题讨论】:
$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);
【讨论】: