Android Chrome ARC-可以访问google帐户吗?

Android Chrome ARC-可以访问google帐户吗?,android,google-chrome-arc,Android,Google Chrome Arc,如何登录到google帐户以获取可用日历 我在Android中运行这段代码 Uri calendars = Uri.parse(String.format("content://%s/calendars", "com.android.calendar")); Cursor managedCursor = activity.managedQuery(calendars, projection, null, null, null); // Enumerate and get all calendar

如何登录到google帐户以获取可用日历

我在Android中运行这段代码

Uri calendars = Uri.parse(String.format("content://%s/calendars", "com.android.calendar"));
Cursor managedCursor = activity.managedQuery(calendars, projection, null, null, null);
// Enumerate and get all calendars

我想在ARC应用程序中执行同样的操作,以便能够插入/编辑所选日历中的项目。如何做到这一点?

ARC当前不支持日历同步适配器。我提交了一份申请,尽管我们可能无法很快实施。欢迎订阅任何更新的bug。

好的,我可以尝试web API,直到bug被修复,因为我想这需要时间当google calendar作为一个web应用程序运行时,让它的web API正常工作似乎很棘手。有没有人举过一个例子来说明如何根据日历API正确地进行身份验证?例如,我尝试过使用GoogleAccountCredential.usingAuth2,但这在web应用程序中似乎不起作用。