blogid [in]
This should be the string MyBlog, which indicates that the post is being created in the user’s blog.
username [in]
The name of the user’s space.
password [in]
The user’s secret word.
content [in]
A struct representing the content to update. The title, description, dateCreated, and categories fields are supported. All other elements are ignored. If multiple categories are specified, each category is added to the category list until the maximum is reached, and all remaining categories are ignored. An error is returned if no title is specified. If no description or categories are provided, the post has no body or category, respectively.
|
struct {
string title;
string description;
dateTime.iso8601 dateCreated;
string[] categories;
} |
publish [in]
If false, this is a draft post.