Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Zend Google API 发布到我的博主 (Blogspot) 博客。我只能输入标题和内容,但我不知道如何添加类别(也称为“标签”)。有没有办法使用 Zend Api 向博客发布类别?
谢谢!
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);