function blogapi_blogger_get_post

6.x blogapi.module blogapi_blogger_get_post($appkey, $postid, $username, $password)

Blogging API callback. Returns a specified blog node.

1 call to blogapi_blogger_get_post()
blogapi_metaweblog_get_post in drupal-6.x/modules/blogapi/blogapi.module
1 string reference to 'blogapi_blogger_get_post'
blogapi_xmlrpc in drupal-6.x/modules/blogapi/blogapi.module
Implementation of hook_xmlrpc().

File

drupal-6.x/modules/blogapi/blogapi.module, line 309
Enable users to post using applications that support XML-RPC blog APIs.

Code

function blogapi_blogger_get_post($appkey, $postid, $username, $password) {
  $user = blogapi_validate_user($username, $password);
  if (!$user->uid) {
    return blogapi_error($user);
  }

  $node = node_load($postid);

  return _blogapi_get_post($node, TRUE);
}