403访问公共数据时,Google URL缩短器API出现禁止错误

问题描述 投票:0回答:1

我正在尝试使用Google URL Shortener API来expand a public short url。 Google URL Shortener API将于3月30日停止使用,如blog post所述。相反,我应该使用Firebase动态链接,但我找不到任何有关使用FDL扩展URL的文档。

我只访问公共数据,所以我一直使用缩短的URL api只有一个API密钥:

curl https://www.googleapis.com/urlshortener/v1/url\?shortUrl\=https://goo.gl/maps/JtZ2Yq19vJP2\&key\=MY_API_KEY

我总是得到以下回应:

{
 "error": {
  "errors": [
   {
    "domain": "global",
    "reason": "forbidden",
    "message": "Forbidden"
   }
  ],
  "code": 403,
  "message": "Forbidden"
 }
}

当使用API​​资源管理器时,我得到了相同的响应,所以我假设它是因为API正在停止,所以我如何使用Firebase动态链接来做同样的事情呢?

google-contacts google-url-shortener
1个回答
0
投票

自上周以来我也有同样的问题。我搜索了解决方案,但原因是谷歌正在关闭其goo.gl URL缩短服务。

https://www.engadget.com/2018/03/30/google-shutting-down-goo-gl-url-shortening-service/

© www.soinside.com 2019 - 2024. All rights reserved.