我可以上传文件到谷歌驱动器从iOS应用程序?

oogrdqng  于 2023-02-06  发布在  iOS
关注(0)|答案(3)|浏览(120)

我正在创建一个从蓝牙外设收集数据的应用程序,当所有的数据都收集好后,我想把我的数据上传到一个google drive账户进行处理,这些数据是.txt文件格式的。
我已经研究过这种方法,它似乎并不真正适合https://developers.google.com/drive/v3/web/quickstart/ios?ver=objc的用途
有什么办法可以在Objective-C中做到这一点吗?我到处都找遍了,但似乎找不到什么。

13z8s7eq

13z8s7eq1#

一个简单的方法是利用谷歌硬盘的CloudRail SDK。下面是你上传文件的方法:

CRGoogleDrive * service = [[CRGoogleDrive alloc] initWithClientIdentifier:@"[Google Drive Client Identifier]"
        clientSecret:@"[Google Drive Client Secret]"
        redirectUri:@"http://localhost:12345/auth"
        state:@"someState"
];

[service uploadFileToPath:@"/myFolder/myFile.png" 
        stream:readableStream 
        size:1024 
        overwrite:true
];
e4yzc0pl

e4yzc0pl2#

是的,您可以上传一个文本文件到谷歌驱动器。请查看这篇文章。IOS: How to upload a file to specific Google drive folder using Google drive sdk library

kxeu7u2r

kxeu7u2r3#

你可以上传.txt和其他类型的文件在谷歌驱动器。你可以通过从本教程Google Drive Integration in iOS appsUploading a file to Google drive using iOS sdk
或参考详细说明。

相关问题