I've got the sharing on the spreadsheet set to Anyone with Link can edit.
First part of script reads:
// Take a copy (File -> Make a copy ...) from
http://goo.gl/yFkbH6
var SPREADSHEET_URL =
'https://docs.google.com/spreadsheets/d/1Q9sx3_z6mpqpKhrgH28eqUuE90zD6SM417YFcVzFtDY/edit';
Section towards the end reads:
function validateAndGetSpreadsheet(spreadsheeturl) {
if (spreadsheeturl ==
'https://docs.google.com/spreadsheets/d/1Q9sx3_z6mpqpKhrgH28eqUuE90zD6SM417YFcVzFtDY/edit')
{
throw new Error('Please specify a valid Spreadsheet
URL. You can find' +
' a link to a template in the associated guide for
this script.');
Still produces:
Completely at a loss on this one.
I'm the administrator of the Ad Words accounts. The spreadsheet
is in my own drive.
-- Rocky Rawlins Diet Direct Inc. 3200 Corporate Drive Suite B Wilmington, NC 28405 TF 800-882-4830 ext. 116 FAX: 910-395-2452 Website: http://www.DietDirect.com email: rocky....@DietDirect.com
--
-- You received this message because you are subscribed to the Google Groups AdWords Scripts Forum group. Please do not reply to this email. To post to this group or unsubscribe please visit https://developers.google.com/adwords/scripts/community.
---
You received this message because you are subscribed to the Google Groups "AdWords Scripts Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to adwords-scrip...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-scripts/245b491a-9ab8-4adf-9931-2afe15d85b95%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
function validateAndGetSpreadsheet(spreadsheeturl) {
if (spreadsheeturl == 'YOUR_SPREADSHEET_URL') {
throw new Error('Please specify a valid Spreadsheet URL. You can find' +
' a link to a template in the associated guide for this script.');
}
return SpreadsheetApp.openByUrl(spreadsheeturl);
}
var SPREADSHEET_URL = 'https://docs.google.com/spreadsheets/d/1Q9sx3_z6mpqpKhrgH28eqUuE90zD6SM417YFcVzFtDY/edit';
Thanks. That solved it. Appreciate the
help.
-- Rocky Rawlins Diet Direct Inc. 3200 Corporate Drive Suite B Wilmington, NC 28405 TF 800-882-4830 ext. 116 FAX: 910-395-2452 Website: http://www.DietDirect.com email: rocky....@DietDirect.com
To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-scripts/60da439e-5acf-4bf8-b783-fc0ac1c0fa98%40googlegroups.com.
You do not have permissions to access the requested document. (line 70)
i am talking about this script https://developers.google.com/adwords/scripts/docs/solutions/account-summary
Please help