为什么我没有将对象引用设置为Google Drive Api中对象的实例。

时间:2019-04-11 07:07:35

标签: vb.net google-drive-api

我尝试将Google API集成到我的VB.NET项目中。
我收到错误“对象引用未设置为对象的实例”。 但是,如果我再次执行相同的操作,它将起作用。

我的代码:

Try
        Dim request As FilesResource.CreateMediaUpload = service.Files.Create(body, stream, body.MimeType)
        request.Upload()
        Dim responsefile = request.ResponseBody
        MsgBox(responsefile.Id.ToString) '-----Error catch here 
Catch e As Exception
        MsgBox("An error occurred: " + e.Message)
        Return Nothing
End Try

注意:我第二次遇到同样的问题,效果很好。

我该怎么办?

0 个答案:

没有答案