var settings = new RequestSettings("appname", "googleusername", "googlepassword");
var service = new WebmasterToolsRequest(settings);
var site = new Sites("http://www.mysite.com", "text/plain");
Sites resultSite = service.AddSite(site);
resultSite.VerificationMethod.Type = "htmlpage";
resultSite.SitesEntry.Update();
.Update fails with a 400 (Bad Request).
Any ideas what I'm doing wrong?
ps. It almost seems easier to just code to the raw google api, this particular library seems to be like vb6, easy to do the easy things, hard to impossible to the do the medium to hard things...