我尝试将长网址转换为短网址,并在Google Apps脚本上使用“缩短器” API,但仍然收到“禁止”消息。 我在Google云端平台上创建了“ API密钥”,还有其他吗?谢谢。
google的示例代码链接: https://developers.google.com/apps-script/advanced/url-shortener?hl=vi
function shortenerUrl(){
var url = UrlShortener.Url.insert(
{
longUrl: "http://www.example.com"
});
Logger.log('Shortened URL is "%s".', url);`enter code here`
}