Ian
Ian

Reputation: 1

DriveApp Times Out no matter what i call

I've tried adding oauth scopes and resetting the permissions. I can't seem to get any call to drive app to work from Google App Script.

function testx()
{
  
  var folder = DriveApp.getRootFolder();
  Logger.log(folder.getName());
}

Upvotes: 0

Views: 27

Answers (1)

Wicket
Wicket

Reputation: 38130

When something fails that only Google can fix, a.k.a there is a service outage or platform bug, it's better to post an issue on the issue tracker. For details see https://developers.google.com/apps-script/support/#bugs

Upvotes: 1

Related Questions