Hi,
I am try to add comments in blogpost programatically using below C# code
-----------------------------------------------------------------------
BlogsService service = new BlogsService(siteUrl, username, apiKey);
List<BlogPost> posts = service.GetBlogPosts(blog.Id);
BlogPost post = posts[0];
BlogPostComment comm = new BlogPostComment();
comm.Body = "this is
my first comment.";
comm.Title = "TestComment";
comm.DateCreated = DateTime.Now;
comm.Id = 0;
post.Comments.Add(comm);
---------------------------------------------------------------------------
but a exception occured while adding comments. and exception message is "The requested object was could not be found at this location, invalid Ur" of type "System.Net.WebException".
Is there any other way to add comments in blogpost? if yes then please let me konw,
Thanks,
Neelesh