使用网站站长工具的 Google .net 客户端库时如何更改验证方法?

发布于 2024-09-08 09:09:53 字数 464 浏览 2 评论 0原文

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();

.更新失败并显示 400(错误请求)。

有什么想法我做错了吗?

附:只对原始谷歌API进行编码似乎更容易,这个特定的库似乎像vb6,很容易做简单的事情,很难到不可能做中等到困难的事情......

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...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文