Questions tagged [joeblogs]

Wordpress & MetaWeblog API for .net

Project located at: https://github.com/alexjamesbrown/joeblogs

9 questions
3
votes
0 answers

How to Post Tags on Wordpress using Joeblogs.dll

I'm coding a class for posting on wp blogs and I'm using Joeblogs.dll. What I cannot find in the Post struct (or anywhere else) is how to create tags with the blog post. Do you have any idea?
1
vote
0 answers

Joeblogs / CookComputer.XmlRpc to log in to wordpress giving error: Proxy Authorization Required

Here is my code: Dim wrapper As New WordPressWrapper("http://www.website.co.uk/xmlrpc.php", txtUsername.Text, txtPassword.Text) Dim lastname As String = wrapper.GetUserInfo.LastName.ToString Dim firstname As String =…
Jay
  • 21
  • 2
1
vote
1 answer

Adding post with thumbnail image to Wordpress blog with JoeBlogs / C#

I'm trying to add new post with thumb image but i still couldnt get success on it. public static int addContent(int postType, string title, string body, string post_thumbnail, string[] categories, string[] tags, DateTime dateCreated) { Post post…
Tayfun Yaşar
  • 422
  • 2
  • 9
  • 24
0
votes
0 answers

How to publish post with private status?

I am using JoeBlogs https://github.com/alexjamesbrown/JoeBlogs to publish my content from ASP.NET VB to wordpress. I am having some problems with posting my Post in Private Status instead of Public Status Here is my code for creating a new Post…
LeoN
  • 1
  • 2
0
votes
0 answers

How to add post thumbnail using joeblogs or xml-rpc?

How do I add thumbnail image content using joeblogs or xmlrpc? add content code: var post = new Post(); post.DateCreated = DateTime.Today.AddHours(0); post.Title = textBox1.Text; post.Body = richTextBox1.Text; post.Categories = new string[] {…
0
votes
1 answer

JoeBlogs Wordpress C# Add category and upload image

I am using JoeBlogs https://github.com/alexjamesbrown/JoeBlogs to handle stuff on some of my wordpress websites. I am having some problems with creating a new category and uploading a picture. Here is my code for creating a new category: var…
user1812076
  • 269
  • 5
  • 21
0
votes
1 answer

How to Add Custom Fields on JoeBlogs Wordpress Wrapper

I'm trying to complete fields with JoeBlogs WordPress Wrapper. My code is: private void postToWordpress(string title, string postContent,string tags, string aioTitle) { string link = this.maskedTextBox1.Text; string username =…
caffeine
  • 435
  • 7
  • 26
0
votes
1 answer

Joe's Blogs .Net API

I am using JoeBlogs API for XMLRPC. Everytime I try to get a page by the ID it throw this error: XmlRpcPage[] : element 0 : struct mapped to type XmlRpcPage : member wp_author_id mapped to type Int32 From this code. /// ///…
Tom Walls
  • 143
  • 2
  • 9
-1
votes
1 answer

Joeblogs Wordpress exception 401

I am developing C# Windows application that uses joeblogs WordPress api to post to WordPress blogs via this application. I have tested sample program with localhost url as localhost/wordpress/xmlrpc.php, it worked fine and posted successfully but…
Raj
  • 13
  • 1
  • 5