4

I need to implement some code on top of a MetaWebLog API client library. The only thing I am finding on google is broken links from the last decade.

Does anyone know of a library (or code) that implements the MetaWebLog API from a standpoint of a client app?

AngryHacker
  • 59,598
  • 102
  • 325
  • 594

2 Answers2

3

JoeBlogs is a library that allows easy interaction with Wordpress blogs, and other blogs that support the metaWeblog XML RPC api.

Live Writer Provider Documentation and .Net Example

MetaWebLog To BlogML Converter — you can get the source code and use MetaweblogAPI.cs.

ruffin
  • 16,507
  • 9
  • 88
  • 138
Artem Koshelev
  • 10,548
  • 4
  • 36
  • 68
  • 1
    I should also point out that JoeBlogs has moved from CodePlex to [GitHub](https://github.com/alexjamesbrown/JoeBlogs), though v1 on CodePlex worked fine for me. – AngryHacker Sep 21 '11 at 06:23
0

Matlus (http://www.matlus.com/metaweblog-api-c-library/) has an extremely simple to use MetaWeblog system that uses only System.IO.Stream for communication. It was by far the simplest Metaweblog example I could find.

http://metaweblogger.codeplex.com/

Dean Lunz
  • 968
  • 7
  • 28