abrudtkuhl / WordPressSharp

A C# client to to interact with the WordPress XML-RPC API
abrudtkuhl.github.io/WordPressSharp/
GNU General Public License v3.0
103 stars 49 forks source link

Reduce request #100

Open mohammad983 opened 5 years ago

mohammad983 commented 5 years ago

post.FeaturedImageId = client.UploadFile(featureImage).Id; var id =Convert.ToInt32(client.NewPost(post)); When I want to sent a post to wordpress I should sent 2 request one for feature image an another for post contents. Could I use one request for both of them?

Blackcat156 commented 5 years ago

Obviously not.