📰 국토교통부 공지사항
불러오는 중…
function doGet(e) {
var url = e.parameter.url;
if (!url)
return ContentService.createTextOutput("Missing url").setMimeType(ContentService.MimeType.TEXT);
var resp = UrlFetchApp.fetch(url, {
muteHttpExceptions: true,
followRedirects: true,
});
// 헤더 그대로 전달 (CORS 허용)
return ContentService
.createTextOutput(resp.getContentText())
.setMimeType(ContentService.MimeType.XML);
}