Problems using the goo.gl API from google apps script

故事扮演 提交于 2019-11-30 23:53:29

The documentation says the contentType defaults to 'application/x-www-form-urlencoded'.

Perhaps try setting the Content-Type with the contentType argument rather than inserting a Content-Type header manually?

The following code works perfectly.

function ShortenUrl(){
var url = 'https://www.googleapis.com/urlshortener/v1/url';
var apiKey = 'AIzBlNS-3HZdxKgwj-x30';
url += '?key=' + apiKey;
var payload = {"longUrl":"www.google.com"};

var parameters = { method : 'post',
                payload:JSON.stringify(payload),
                contentType:'application/json',                    
                muteHttpExceptions:true};

var response = UrlFetchApp.fetch(url, parameters);
Logger.log(response);
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!