Download File in Appmaker

后端 未结 1 714
南旧
南旧 2021-01-16 10:22

I have created one app in Appmaker, I want to download certain reports from the Drive tables in Appmaker. For this currently I am creating SpreadSheet using Drive APIs. I wa

相关标签:
1条回答
  • 2021-01-16 10:55

    It seems that you can get download URL using DriveApp Apps Script service

    // Server script
    var downloadUrl = DriveApp.getFileById(FileIdGoesHere).getDownloadUrl();
    
    0 讨论(0)
提交回复
热议问题