Auto Publishing Wordpress c #

3

I want a C # application to post to a WordPress blog. The title of the post would be the value of the variable title and the article would be the variable html . How do I get this?

Obs: Console project.

    
asked by anonymous 08.05.2015 / 21:11

2 answers

2

You should use WordPress' XML-RPC interface . There are many examples and articles about it that you can use ( exam ).

    
08.05.2015 / 21:51
2

I believe this project in GitHub in C # (in Console) where you can do one post using the WordPress XML-RPC interface can help you.

    
08.05.2015 / 21:57