CARVIEW |
Select Language
HTTP/2 200
server: GitHub.com
content-type: text/html; charset=utf-8
last-modified: Mon, 26 Jan 2015 22:20:58 GMT
access-control-allow-origin: *
etag: W/"54c6bdca-ea1"
expires: Sat, 11 Oct 2025 10:46:16 GMT
cache-control: max-age=600
content-encoding: gzip
x-proxy-cache: MISS
x-github-request-id: 880E:284228:23F94:29DA5:68EA331F
accept-ranges: bytes
age: 0
date: Sat, 11 Oct 2025 10:36:16 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210031-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1760178976.480718,VS0,VE302
vary: Accept-Encoding
x-fastly-request-id: 11a26662d27669a40bc362903288f23c0e05b926
content-length: 1345
WordPressSharp - C# utility for WordPress XML-RPC API - by abrudtkuhl
WordPressSharp
A C# client to interact with the WordPress XML-RPC API
Examples
Create Post
var post = new Post {
PostType = "post",
Title = "My Awesome Post",
Content = "<p>This is the content</p>",
PublishDateTime = DateTime.Now
}
using (var client = new WordPresClient(new WordPressSiteConfig {
BaseUrl = "https://mywordpress.com",
Username = "admin",
Password = "password",
BlogId = 1
}))
{
var id = Convert.ToInt32(client.NewPost(post));
}
Tutorials
Dependencies
Resources
Notes
Inspired by the POSSIBLE.WordPress.XmlRpcClient by markeverard