Re: Using WordPressSharp To Publish A Post - http://brudtkuhl.com/using-w...
Jan 27, 2015
from
"client.NewPost will return the WordPress Post Id
So you can use that ID to build the permalink without making another XML-RPC Call.
Ex:
var id = client.NewPost(post);
var permalink = String.Format("{0}/?p={1}", client.BaseUrl, id);
// permalink = http://brudtkuhl.com/?p=234
If you have pretty permalinks setup in your admin then it will redirect to it."
- andy brudtkuhl