How to create draft post using Blogger APi, but not using Zend_Framework.
here my code but i cant save post as draft.
function postdraft($auth, $title, $body, $labels=array()){
$request = "<entry xmlns='http://www.w3.org/2005/Atom'>";
$request .= "<title type='text'>$title</title><content type='xhtml'><div xmlns=\"http://www.w3.org/1999/xhtml\">$body</div></content>";
foreach ($labels as $label){$request .= "<category scheme=\"http://www.blogger.com/atom/ns#\" term=\"$label\" />";}
$request .= "<app:control xmlns:app='http://purl.org/atom/app#'><app:draft>yes</app:draft></app:control>";
$request .= "</entry>";
$headers = array(
'Content-Type' => 'application/atom+xml',
'GData-Version' => '2',
'Authorization' => 'GoogleLogin auth='.$auth,
);
$res = drupal_http_request("http://www.blogger.com/feeds/9180224947369371402/posts/default", $headers, 'POST', $request);
$res = $res->data;
$res = simplexml_load_string($res);
return $res->link[4][href];
//~ print_r (simplexml_load_string(($request)));
}
In my code there is
<app:control xmlns:app='http://purl.org/atom/app#'><app:draft>yes</app:draft></app:control>
but still cant post as draft.. PS : using drupal environment, so it use drupal_http_request instead cURL