在我在Apps脚本中编写的Gmail插件中,我正在尝试使用JDBC连接到外部MySQL。
脚本包含
var dbUrl = 'xxx';
var conn = Jdbc.getConnection(dbUrl, 'xxx', 'xxx');
var stmt = conn.createStatement();
var res = stmt.executeQuery("select * from koalas");
执行后,我收到错误消息You do not have permission to call getConnection
。
当我尝试使用UrlFetchApp.fetch
时,类似的问题如何解决?
答案 0 :(得分:0)
尝试在网页链接中查找下一个信息
例如:https://developers.google.com/apps-script/concepts/scopes
找到后,按照步骤操作并添加此链接:
"https://www.googleapis.com/auth/script.external_request",
我解决了同样的问题