gpt4 book ai didi

ios - 我可以从 iOS 应用程序将文件上传到 google drive 吗?

转载 作者:行者123 更新时间:2023-11-28 21:07:57 26 4
gpt4 key购买 nike

我正在创建一个从蓝牙外围设备收集数据的应用程序。收集完所有数据后,我想将我的数据(格式为 .txt 文件)上传到 google drive 帐户进行处理。

这个方法我看过了,好像不太符合目的 https://developers.google.com/drive/v3/web/quickstart/ios?ver=objc

有什么办法可以在 Objective-C 中做到这一点?我到处搜索,似乎找不到任何东西。

最佳答案

一个简单的方法是利用 CloudRail SDK适用于 Google 云端硬盘。以下是上传文件的方式:

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
];

关于ios - 我可以从 iOS 应用程序将文件上传到 google drive 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44718710/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com