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

link|improve this question

43% accept rate
Sorry, case closed, just need to change purl.org/atom/app# to w3.org/2007/app – ujang kelabu Feb 8 at 1:35
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.