通过 API 向 Google Search Console 添加 HTTPS url 属性

通过 API 向 Google Search Console 添加 HTTPS url 属性

我查看了这个页面,了解如何添加网站https://developers.google.com/webmaster-tools/search-console-api-original/v3/sitemaps/submit

该代码有效:

curl --request PUT \ 'https://www.googleapis.com/webmasters/v3/sites/http://www.MY_URL.com' \ --header 'Content-length: 0' \ --header 'Authorization: Bearer MY_TOKEN' \ --header 'Accept: application/json' \ --compressed

但是这个使用 HTTPS 的代码不起作用:

curl --request PUT \ 'https://www.googleapis.com/webmasters/v3/sites/https://www.MY_URL.com' \ --header 'Content-length: 0' \ --header 'Authorization: Bearer MY_TOKEN' \ --header 'Accept: application/json' \ --compressed

那么如何以编程方式向 Google Search Console 添加 HTTPS URL?

谢谢你的建议

L。

相关内容