Hi all,
New to Google Scripts so starting with:
Google Ads Link Checker Script, this is what I've updated in the template script (in green):
var CONFIG = {
// URL of the spreadsheet template.
// This should be a copy of https://docs.google.com/spreadsheets/d/1iO1iEGwlbe510qo3Li-j4KgyCeVSmodxU6J7M756ppk/copy.
SPREADSHEET_URL: '[my copy of sheet]',
// Array of addresses to be alerted via email if issues are found.
RECIPIENT_EMAILS: [
'[my email]'
],
// Label to use when a link has been checked.
LABEL: 'LinkChecker_Done',
// Number of milliseconds to sleep after each URL request. Use this throttle
// to reduce the load that the script imposes on your web server(s).
THROTTLE: 0,
// Number of seconds before timeout that the script should stop checking URLs
// to make sure it has time to output its findings.
TIMEOUT_BUFFER: 120
};
Since I'm implementing on a single account I've omitted the account condition variable in the code.
But I see this error:
Not sure why this is happening as I am unsure where to add the account info.
Kind Regards,
Isabel