| 5 blogapi.module | blogapi_blogger_get_post($appkey, $postid, $username, $password) |
| 6 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()
1 string reference to 'blogapi_blogger_get_post'
File
- 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);
}
Login or register to post comments