我长期努力尝试将 Google Drive 集成到 android 应用程序中。但这是一个陷阱——谷歌一如既往地感到惊讶——从不好的意义上来说。这一切都始于我依赖谷歌的指示(第一,第一)这一事实。我满足了所有条件 - 创建了 OAuth 2.0,为应用程序创建了一个密钥,应用程序注册,导入的库......通常做了他们要求的所有事情并重新检查了 100 次。但正如预期的那样没有工作 - 在第一种情况下,所有的例子,我收到一个“403 Forbidden Access Not Configured”,第二个无法实现,因为谷歌还没有发布密钥。整整一周,我一直在寻找解决这个问题的替代方案——大量检查信息、花费大量精力和时间——但结果是 0。希望的曙光来自于ArtOfWarfare的一般性问题。但是他提出的代码,据称他工作的代码,我不工作 - 我允许应用程序使用该帐户,然后由于“与 Google 的通信错误”而导致其连接失败,重复尝试产生相同的结果。结果,我画了“他们的”代码只是为了尝试与驱动器通信。因为我在这里写 - 因此它不起作用。下面显示的代码返回“400 Bad Request Invalid Upload Request”,“. 您对如何通过授权解决此问题有任何想法,或者有其他成功登录的方法吗?我会很高兴进行建设性的对话。
package com.example.hiv;
import java.io.IOException;
import android.accounts.AccountManager;
import android.accounts.AccountManagerCallback;
import android.accounts.AccountManagerFuture;
import android.accounts.OperationCanceledException;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import com.google.api.client.extensions.android.http.AndroidHttp;
import com.google.api.client.googleapis.auth.oauth2.GoogleCredential;
import com.google.api.client.googleapis.extensions.android.gms.auth.UserRecoverableAuthIOException;
import com.google.api.client.googleapis.services.GoogleKeyInitializer;
import com.google.api.client.http.FileContent;
import com.google.api.client.http.HttpTransport;
import com.google.api.client.json.JsonFactory;
import com.google.api.client.json.gson.GsonFactory;
import com.google.api.services.drive.Drive;
public class ActivityStart extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout_activity_start);
String AUTH_TOKEN_TYPE = "oauth2:https://www.googleapis.com/auth/drive";
AccountManager accountManager = AccountManager.get(this);
accountManager.invalidateAuthToken(accountManager.getAccounts()[0].type, null);
accountManager.getAuthToken( accountManager.getAccountsByType("com.google")[0], AUTH_TOKEN_TYPE, null, this,
new AccountManagerCallback<Bundle>() {
public void run(final AccountManagerFuture<Bundle> future) {
try {
String authToken = future.getResult().getString(
AccountManager.KEY_AUTHTOKEN);
final HttpTransport transport = AndroidHttp.newCompatibleTransport();
final JsonFactory jsonFactory = new GsonFactory();
GoogleCredential credential = new GoogleCredential();
credential.setAccessToken(authToken);
final Drive drive = new Drive.Builder(transport, jsonFactory, credential)
.setApplicationName("HIV")
.setGoogleClientRequestInitializer(new GoogleKeyInitializer("*****yDaPx1EtTHpMMMULzYlxjc3xdwsf******"))
.build();
Thread t = new Thread(new Runnable() {
@Override
public void run() {
try {
final com.google.api.services.drive.model.File body = new com.google.api.services.drive.model.File();
body.setTitle("My Test File");
body.setDescription("A Test File");
body.setMimeType("text/plain");
java.io.File fileContent = new java.io.File("data/data/com.example.hiv/document.txt");
FileContent mediaContent = new FileContent("text/plain", fileContent);
com.google.api.services.drive.model.File file = drive.files().insert(body, mediaContent).execute();
} catch (UserRecoverableAuthIOException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
});
t.start();
} catch (OperationCanceledException exception) {
// TODO
} catch (Exception exception) {
Log.d(this.getClass().getName(), exception.getMessage());
}
}
}, null);
}
}