Skip to content

Instantly share code, notes, and snippets.

@etjossem
Created August 20, 2015 20:10
Show Gist options
  • Save etjossem/d53184c85a8ef1710974 to your computer and use it in GitHub Desktop.
Save etjossem/d53184c85a8ef1710974 to your computer and use it in GitHub Desktop.
Modification to ImportJSON
function ImportJSONBasicAuthentication(url, query, parseOptions, username, password) {
var fetchOptions = {
"headers" : {
"Authorization" : 'Basic ' + Utilities.base64Encode(username + ':' + password)
},
muteHttpExceptions: true
};
return ImportJSONAdvanced(url, fetchOptions, query, parseOptions, includeXPath_, defaultTransform_);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment