I am using <a href="https://github.com/alexjamesbrown/JoeBlogs" rel="nofollow">joeblogs</a> as wordpress api for .net
I use that code to get info about my blog
There is not problem on that code. But For example I want to get content of another wordpress website.. such as this website: <a href="http://en.blog.wordpress.com/" rel="nofollow">http://en.blog.wordpress.com/</a> and topic
<a href="http://en.blog.wordpress.com/2012/10/11/new-themes-babylog-and-delicacy/" rel="nofollow">http://en.blog.wordpress.com/2012/10/11/new-themes-babylog-and-delicacy/</a>
It calls as feeding. and here is feeding link of this topic
<a href="http://en.blog.wordpress.com/2012/10/11/new-themes-babylog-and-delicacy/feed/" rel="nofollow">http://en.blog.wordpress.com/2012/10/11/new-themes-babylog-and-delicacy/feed/</a>
But it doesnt have content of the topic. I can do it with blogger api because it supports feeding content. How can I get content of a topic with that api for .net ?
p.s.: I dont want to use rest of that api.
I use that code to get info about my blog
Code:
WordPressWrapper wrapper = new WordPressWrapper("http://www.xxxx.org/xmlrpc.php", "xxx", "yyyyy");
var post = new Post()
{
Body = "This is a test body",
Categories = new string[] { "1", "2", "3" },
Tags = new string[] { "tag one", "another tag", "one more" },
Title = "Test post "
};
int idsi= wrapper.NewPost(post, true);
IEnumerable<Post> recentPosts = wrapper.GetRecentPosts(100);
foreach (Post recentPost in recentPosts)
{
}
var userBlogs = wrapper.GetUserBlogs();
var tags = wrapper.GetTags();
var categories = wrapper.GetCategories();
var authors = wrapper.GetAuthors();
There is not problem on that code. But For example I want to get content of another wordpress website.. such as this website: <a href="http://en.blog.wordpress.com/" rel="nofollow">http://en.blog.wordpress.com/</a> and topic
<a href="http://en.blog.wordpress.com/2012/10/11/new-themes-babylog-and-delicacy/" rel="nofollow">http://en.blog.wordpress.com/2012/10/11/new-themes-babylog-and-delicacy/</a>
It calls as feeding. and here is feeding link of this topic
<a href="http://en.blog.wordpress.com/2012/10/11/new-themes-babylog-and-delicacy/feed/" rel="nofollow">http://en.blog.wordpress.com/2012/10/11/new-themes-babylog-and-delicacy/feed/</a>
But it doesnt have content of the topic. I can do it with blogger api because it supports feeding content. How can I get content of a topic with that api for .net ?
p.s.: I dont want to use rest of that api.