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.
ブロガー (Blogspot) ブログへの投稿に Zend Google API を使用しています。タイトルとコンテンツしか入力できませんが、カテゴリ (「ラベル」とも呼ばれます) を追加する方法がわかりません。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);