1

我成功地将一个文本文件上传到谷歌云端硬盘,并且我编写了一个成功地将文本翻译成猪拉丁语的方法。现在我正在尝试在 Google Drive 中创建一个新文档来输出翻译后的文本。但是我总是收到消息:“发生错误”,当我检查我的驱动器时,我只有原始上传的文本。

这是我的代码:

function doGet(e) {

 var app = UiApp.createApplication().setTitle("Upload");
   var formContent = app.createVerticalPanel();
   formContent.add(app.createFileUpload().setName('thefile'));
   formContent.add(app.createSubmitButton('submit'));
   var form = app.createFormPanel();
   form.add(formContent);
   app.add(form);
   return app;
 }

function doPost(e) {
   // data returned is a blob for FileUpload widget
   var fileBlob = e.parameter.thefile;
   var doc = DocsList.createFile(fileBlob);

   var app = UiApp.getActiveApplication();
   //Display a confirmation message
   var label = app.createLabel('file uploaded successfully');
   app.add(label);
   return app;

  var text = doc.getDataAsString();
  Logger.log('I uploaded and my text is: ' + text);

  MakeTranslationDoc(text);
 }

function MakeTranslationDoc(passedText) 
{ 

  // Create a new Report 
  var newdoc = DocumentApp.create('Pig Latin Translation');

  newdoc.appendParagraph(ParseText(passedText));

  // Save and close the document
  newdoc.saveAndClose();
}

function ParseText(myText) 
{  
  ...convert text to piglatin...
  return results;
}

我应该怎么做才能从上传的文本成功创建新文档?

4

2 回答 2

1

有时间再研究一下:(它有点像黑客,但应该可以

这是 API 控制台帮助页面,您应该创建一个需要您使用 google 凭据登录的项目。如果这是您第一次登录 API,您将获得一个大按钮来创建您的第一个项目。然后,您应该获取 Web 应用程序客户端的凭据。当您单击 API 访问链接时会找到 CONSUMER_KEY 和 CONSUMER_SECRET,它们被称为“客户端 ID”和“客户端密码”。

  • 请务必选择 Drive API 服务。

创建项目后,控制台将显示,单击服务(右侧的链接),向下滚动并单击 Drive API 切换以启用它。

  • 使用上传文件的 ID,您可以使用 urlFetch 下载其内容

您刚刚作为 ID 上传的文件,您可以使用 docID = doc.getId() 获取它

  • 您需要授权 OAuth 流程

基本上,当您第一次运行脚本时,它将通过授权流程,这将使您的应用程序能够访问您的驱动器资源,因为您可能会看到应用程序选择的范围是只读的“www.googleapis.com/auth/ drive.readonly”,您可以在此处了解有关 Drive API 的更多信息

  • 我已在电子表格中完成此操作以查看 Logger 语句,当然您可以将其移植到非电子表格绑定脚本。

在电子表格中开发提供了更好的调试功能,之后我们可以将代码移植到独立脚本中。不同之处在于,要显示 UI,您需要调用活动电子表格并在其上调用 .show(app) ...有关此信息的信息:https ://developers.google.com/apps-script/uiapp#DisplayingSpreadsheet

代码:

function getFileContent(docId) {

    //set up oauth for Google Drive Settings

    var oAuthConfig1 = UrlFetchApp.addOAuthService("googleDrive2");
    oAuthConfig1.setRequestTokenUrl("https://www.google.com/accounts/OAuthGetRequestToken?scope=https://www.googleapis.com/auth/drive.readonly");
    oAuthConfig1.setAccessTokenUrl("https://www.google.com/accounts/OAuthGetAccessToken");
    oAuthConfig1.setAuthorizationUrl("https://www.google.com/accounts/OAuthAuthorizeToken?oauth_callback=https://script.google.com/a/macros");
    oAuthConfig1.setConsumerKey(CONSUMER_KEY);
    oAuthConfig1.setConsumerSecret(CONSUMER_SECRET);

    var options1 = {oAuthServiceName:"googleDrive2", oAuthUseToken:"always", method:"GET", headers:{"GData-Version":"3.0"}, contentType:"application/x-www-form-urlencoded"};

    //set up drive file url
    var theUrl = "https://www.googleapis.com/drive/v2/files/" + docId;

    //urlFetch for drive metadat info
    var fileMetadata = "";
    try {
        var response = UrlFetchApp.fetch(theUrl,options1);
        fileMetadata = response.getContentText();
    } catch(problem) {
        Logger.log(problem.message);  
    }

    // find the download Url
    var fileDownloadUrl = Utilities.jsonParse(fileMetadata).downloadUrl;
    Logger.log(fileDownloadUrl)

    var fileContent = "";
    try {
        var response = UrlFetchApp.fetch(fileDownloadUrl,options1);

        fileContent = response.getContentText();
    } catch(problem) {
        Logger.log(problem.message);
    }
    Logger.log(fileContent);
}

让我知道它是如何工作的。

于 2013-09-11T10:23:55.807 回答
0

这些天要做的第一件事是转移到比 DocList 更新的 DriveApp。

失败的函数是已被 doc.getAs(mimeType) 替换的 doc.getDataAsString()。

这两个更改,并将文档 ID 传递给下一个函数(失去耦合?)您的代码将开始工作

function doGet(e) {

 var app = UiApp.createApplication().setTitle("Upload");
   var formContent = app.createVerticalPanel();
   formContent.add(app.createFileUpload().setName('thefile'));
   formContent.add(app.createSubmitButton('submit'));
   var form = app.createFormPanel();
   form.add(formContent);
   app.add(form);
   return app;
 }

function doPost(e) {
   // data returned is a blob for FileUpload widget
   var fileBlob = e.parameter.thefile;
   var doc = DriveApp.createFile(fileBlob);

   var app = UiApp.getActiveApplication();
   //Display a confirmation message
   var label = app.createLabel('file uploaded successfully');
   app.add(label);

  docID = doc.getId()
  MakeTranslationDoc(docID);

  return app;
 }

function MakeTranslationDoc(docID) 
{

  var uploadedDoc =  DriveApp.getFileById(docID);
  var text = uploadedDoc.getAs(uploadedDoc.getMimeType());

  // Create a new Report 
  var newdoc = DocumentApp.create('Pig Latin Translation');

  newdoc.appendParagraph(ParseText(text));

  // Save and close the document
  newdoc.saveAndClose();
}

function ParseText(myText) 
{  
//  ...convert text to piglatin...
  return myText;
}

重要的是不要假设您知道 MimeType 并从文档本身获取它。

如果您遇到任何问题,请告诉我。

于 2013-09-10T10:02:25.717 回答