Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function getStatusCode(url){
- var options = {
- 'muteHttpExceptions': true,
- 'followRedirects': false
- };
- var response = UrlFetchApp.fetch(url, options);
- return response.getResponseCode();
- }
Advertisement
Add Comment
Please, Sign In to add comment