TagJoeBlogs

Joe Blogs Wrapper V2 – Help required

J

I’m on the verge of being able to release a second, much improved version of the Joe Blogs WordPress & MetaWeblog API Wrapper. Some very brief details below, and a cry for help (or several cries!) New Features / Improvements Friendlier API Instead of having to deal with the XML-RPC interfaces directly, I’ve added a “friendly” layer of classes on top. The WordPressWrapper class has helper...

Creating a new post in WordPress using the JoeBlogs library

C

A few people have recently been asking how the NewPost method works within JoeBlogs First, you need to create an instance of Post. Then, set the following properties: dateCreated Fairly self explanatory, but you should set this to today’s date (or whatever date you wish the post to be set as published) title The title of the post description The body of the post. This can of course contain...

JoeBlogs – Typo in dummy URL fixed

J

I’ve recently had a few comments that the JoeBlogs wrapper wasn’t working – and they were getting an “invalid response” or more specifically “Response XML not valid XML-RPC – missing methodResponse element.” It seems that I had a typo in my comments in JoeBlogs.TestHarness/Program.cs on line 15: //typically (if your wordpress blog is installed in root dir) The problem, is the xmlprc.php – this...

Using JoeBlogs -metaWeblog API Wrapper

U

Step 1 Download the latest release of JoeBlogs from Codeplex (Click the Downloads tab, and select the latest download) Step 2 Unzip the contents of the downloaded zip file. (I usually copy DLLs I am going to use into a “lib” folder at the root of my solution) Step 3 Add a reference to BOTH CookComputing.XmlRpcV2.dll AND JoeBlogs.dll Include AlexJamesBrown.JoeBlogs in your class, with using /...