我尝试获取文件夹列表,并且已成功获取php客户端。 但是当我尝试使用app脚本创建文档时,如果我在应用程序脚本编辑器中使用“运行”图标运行应用程序脚本代码,则会创建文档。 但是当我使用PHP客户端执行该方法时,它会向我显示错误。
捕获异常:调用POST https://script.googleapis.com/v1/scripts/..................:run: (401) ScriptError
我也发送了两个范围:
https://www.googleapis.com/auth/documents https://www.googleapis.com/auth/drive
$client = new Google_Client();
$client->setApplicationName("Apps Script Execution");
$client->setScopes(array('https://www.googleapis.com/auth/drive','https://www.googleapis.com/auth/documents','https://www.googleapis.com/auth/drive.file'));
//$client->setScopes(array('https://www.googleapis.com/auth/drive.file'));
$client->setAuthConfigFile('client_secrets_app_script.json');
我该如何解决?
这是我的code.gs
/**
* The function in this script will be called by the Apps Script Execution API.
*/
/**
* Return the set of folder names contained in the user's root folder as an
* object (with folder IDs as keys).
* @return {Object} A set of folder names keyed by folder ID.
*/
function getFoldersUnderRoot() {
var root = DriveApp.getRootFolder();
var folders = root.getFolders();
var folderSet = {};
while (folders.hasNext()) {
var folder = folders.next();
folderSet[folder.getId()] = folder.getName();
}
var doc = DocumentApp.create('Naya Doc');
var body = doc.getBody();
var rowsData = [['Plants', 'Animals'], ['Ficus', 'Goat'], ['Basil', 'Cat'], ['Moss', 'Frog']];
body.insertParagraph(0, doc.getName())
.setHeading(DocumentApp.ParagraphHeading.HEADING1);
table = body.appendTable(rowsData);
table.getRow(0).editAsText().setBold(true);
return folderSet;
}
答案 0 :(得分:2)
正如詹姆斯尼古拉斯所说,这个错误是由于缺乏许可范围。 扩展PHP quickstart.php教程时遇到了同样的错误。修改并发布Google Apps脚本功能后,应该已向您指出示波器已更改。您还需要在PHP中调整已定义的范围。
要查找需要添加的范围,请转到文件 - >单击项目属性,然后单击范围选项卡。
例如,我添加了https://www.googleapis.com/auth/spreadsheets:
define('SCOPES', implode(' ', array(
"https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/spreadsheets")
));
一旦你这样做,你将需要删除.credentials / script-php-quickstart.json,就像它在上面的评论中所做的那样,以便你可以正确地重新生成范围。
答案 1 :(得分:1)
问题出现在我的代码中。我使用的是重定向URI,两个文件都需要权限范围。 但我只在一个文件中添加了权限范围。 因此,无论您在哪里请求客户端,都要在所有文件中添加权限。