Jeeran Blogs Service
The following methods are supported:
deletes a post from the blog
Parameters
| string | appkey |
| string | postid |
| string | username |
| string | password |
| boolean | publish |
Return Value
| boolean | Always returns true |
returns basic user information, such as name, email address, and userid
Parameters
| string | appkey |
| string | username |
| string | password |
Return Value
| struct UserInfo | A struct containing profile information about the user |
returns information about the user's blogs
Parameters
| string | appkey |
| string | username |
| string | password |
Return Value
| array of struct BlogData | An array of structs that represents each of the user's blogs |
edits an existing entry on a blog
Parameters
| string | postid |
| string | username |
| string | password |
| struct PostData | content |
| boolean | publish |
Return Value
| boolean | Always returns true |
returns the list of categories that have been used in the blog
Parameters
| string | blogid |
| string | username |
| string | password |
Return Value
| array of struct CategoryData | An array of structs that contains one struct for each category |
returns a specific entry from a blog
Parameters
| string | postid |
| string | username |
| string | password |
Return Value
| struct PostData | A struct that represents the post |
returns the most recent non-draft blog posts in descending order by publish date
Parameters
| string | blogid |
| string | username |
| string | password |
| integer | numberOfPosts |
Return Value
| array of struct PostData | An array of structs that represents each post |
posts a new entry to a blog
Parameters
| string | blogid |
| string | username |
| string | password |
| struct PostData | content |
| boolean | publish |
Return Value
| string | The postid of the newly-created post |
Gets a list of active categories for a given blog as an array of MT category struct
Parameters
| string | blogid |
| string | username |
| string | password |
Return Value
| array of struct MtCategory | An array of structs that contains one struct for each MT category |
Has no effect. Posts are published using metaWeblog.newPost and metaWeblog.editPost
Parameters
| string | postid |
| string | username |
| string | password |
Return Value
| boolean | always returs true |
Has no effect. Post categories are set using metaWeblog.newPost and metaWeblog.editPost
Parameters
| string | blogid |
| string | username |
| string | password |
| array of struct MtCategory | categories |
Return Value
| boolean | always returns true |
Members
| string | userid |
| string | firstname |
| string | lastname |
| string | url |
| string | email |
| string | nickname |
Members
| string | url |
| string | blogid |
| string | blogName |
Members
| string | title (optional) |
| string | description |
| array of string | categories (optional) |
| string | postid (optional) |
| dateTime | dateCreated (optional) |
Members
Members
| string | categoryId |
| string | categoryName |
| boolean | isPrimary (optional) |