php - Add Categories to Blogger with Google Api? -


i using zend google api posting blogger (blogspot) blog. can enter title , content don't know how add categories (also known "labels"). there way use zend api post blogger categories?

thanks!

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 new label list of labels.  $entry->setcategory($labels);  

Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -