"Requested entity was not found." - 应用脚本执行 API 错误



我们有一个应用脚本,安装在五个G Suite帐户中。我正在从部署在Google App Engine中的Java代码中调用应用程序脚本。我已经将五个刷新令牌存储在一个属性文件中,并在调用应用程序脚本之前以循环方式在GoogleCredential中设置它们。当我尝试调用应用程序脚本Requested entity was not found.时,返回错误。但是,当我创建一个简单的 java 程序来调用应用程序脚本时,相同的刷新令牌和客户端机密可以正常工作。

@Service
public class GoogleAppsScriptServiceImpl {
private String[] scriptIds;
private String[] refreshTokens;
private GoogleCerdential credential;
public void executeAppsScript() {
List<Object> params = new ArrayList<>();
params.add(googleDocFileId);
ExecutionRequest request = new ExecutionRequest()
.setFunction(APPS_SCRIPT_FUNCTION_NAME)
.setParameters(params);
int index = new Random().nextInt(numOfUsers);
Script scriptService = getScriptService(refreshTokens[index]);
String scriptId = scriptIds[index];
Operation operation = scriptService.scripts()
.run(scriptId, request)
.setQuotaUser(UUID.randomUUID().toString())
.execute();
}
private Script getScriptService(String refreshToken) {
credential.setRefreshToken(refreshToken);
return new Script.Builder(httpTransport, jsonFactory, credential)
.setApplicationName(APPLICATION_NAME)
.build();
}
@PostConstruct
private void createGoogleCredential() throws Exception {
jsonFactory = JacksonFactory.getDefaultInstance();
httpTransport = GoogleNetHttpTransport.newTrustedTransport();
credential = new GoogleCredential.Builder()
.setTransport(httpTransport)
.setJsonFactory(jsonFactory)
.setClientSecrets(clientId, clientSecret)
.build();
refreshTokens = commaDelimitedListToStringArray(refreshTokensProp);
numOfUsers = refreshTokens.length;
scriptIds = commaDelimitedListToStringArray(scriptsIdsProp);
}
}

您正在将执行 API 部署到独立脚本类型或容器绑定脚本类型的项目。然后使用 API 调用项目中的函数。在这种情况下,会发生Requested entity was not found.的错误。如果我的理解是正确的,我也经历过同样的情况。那么确认以下几点怎么样?

  1. 使用保存按钮,再次保存正在部署 API 可执行文件的项目。
    • 这对我来说非常重要。
  2. 将项目另存为新版本,然后重新部署 API。
  3. 是否从使用应用脚本 API 的项目中检索客户端 ID 和客户端密码。
    • 是否从这些客户端 ID 和客户端密码中检索访问令牌。
  4. 范围是否包括https://www.googleapis.com/auth/drivehttps://www.googleapis.com/auth/drive.scriptshttps://www.googleapis.com/auth/script.external_request
  5. 是否启用执行 API。

如果只想使用 curl 命令进行测试,也可以使用以下命令。

curl -X POST -L 
-H "Authorization: Bearer ### access token ###" 
-H "Content-Type: application/json" 
-d "{function: '### function name ###',devMode: true}" 
"https://script.googleapis.com/v1/scripts/### script ID ###:run"

确认以上几点后,请重试。如果这些对你没有用,我很抱歉。或者如果我误解了你的问题,我真的很抱歉。

问题不在于 Apps Script 或 App Engine 项目的配置。我在@PostConstruct方法中创建了一个GoogleCredential对象,并在调用应用程序脚本之前从预生成的令牌列表中设置刷新令牌 (credential.setRefreshToken())。即使我为同一组客户端 ID 和客户端密钥创建了刷新令牌,也收到错误。因此,我正在创建多个GoogleCredential对象作为刷新令牌的数量,而不是跨多个刷新令牌重用凭据对象。

private GoogleCredential[] credentials;
@PostConstruct
private void createGoogleCredential() throws Exception {
jsonFactory = JacksonFactory.getDefaultInstance();
httpTransport = GoogleNetHttpTransport.newTrustedTransport();
String[] refreshTokens = commaDelimitedListToStringArray(refreshTokensProp);
numOfUsers = refreshTokens.length;
credentials = new GoogleCredential[numOfUsers];
for (int i=0; i<numOfUsers; i++) {
GoogleCredential credential = new GoogleCredential.Builder()
.setTransport(httpTransport)
.setJsonFactory(jsonFactory)
.setClientSecrets(clientId, clientSecret)
.build();
credential.setRefreshToken(refreshTokens[i]);
credentials[i] = credential;
}
scriptIds = commaDelimitedListToStringArray(scriptsIdsProp);
}

相关内容

  • 没有找到相关文章

最新更新