复制时出现空500错误

时间:2014-05-28 02:07:22

标签: google-drive-api

尝试对文档执行复制命令时,我一直收到来自Google Drive API的极高失误率,我可能或可能没有权限进行复制。

以下是用于将文件复制到驱动器的代码。

copyDriveFile = (file, callback) ->
    driveRequest({
        url: "https://www.googleapis.com/drive/v2/files/#{file.id}/copy?key=omitted"
        method: "POST"
        params:
            fileId: file.id
        json:
            title: file.name
        jwt: 
            email: "my-account@developer.gserviceaccount.com"
            keyFile: "file-key.pem"
            scopes: ['https://www.googleapis.com/auth/drive']
        },(err, res, body) ->
            callback err, res, body
            )

我们收到的回复方式如下:{"error":{"code":500,"message":null}}

任何帮助都将不胜感激。

0 个答案:

没有答案