Use SyncAdapter to sync with *local* gmail and facebook app data(使用 SyncAdapter 与 *local* gmail 和 facebook 应用程序数据同步)
问题描述
对于我需要开发的应用程序,我需要能够使用 SyncAdapter 与 gmail 和 facebook 数据同步.我希望与本地 facebook 和 gmail 应用程序(如果可用)而不是他们的远程服务器同步.与本地应用同步意味着更少的电池使用、更少的网络使用、更快的同步等.当然,如果需要,我会设置正确的权限.
For an app I need to develop, I need to be able to sync with both gmail and facebook data using a SyncAdapter. I'm hoping to sync with the local facebook and gmail apps (if available) instead their remote servers. Syncing with the local apps would mean less battery usage, less network usage, faster syncing, etc. Of course, if needed, I will set the correct permissions.
我的问题:
- 如果有任何应用程序(gmail/facebook)可用,是否可以查询它们的数据(消息、事件等)?
- 如果没有,是否可以从他们那里获取身份验证令牌(或任何类型的凭据),这样我就可以在无需用户再次输入每个用户名和密码的情况下查询服务器?李>
- 如果可能的话,是否也可以在 facebook 或 gmail 应用程序同步后立即自动同步,以便我在他们完成后立即获得新数据?
如果这些都不可用,我想我需要自己获取数据,所以这与这个问题无关.
If none of these are available, I guess I'll need to fetch the data myself, so that's not relevant for this question.
推荐答案
我不能代表 Facebook,但 GMail 应用程序不允许这样做.它以前可以工作,但他们已经保护了它,以便只有 Google 应用程序可以查询电子邮件内容提供商.您可以做的最好的事情是使用 获取消息数量标签 API.您可以使用标准 Android AccountManager
获取 Google 服务的身份验证令牌(ClientLogin 或 OAuth2).然后,您必须使用它连接到特定的 API 以获取实际数据.
I can't speak for Facebook, but the GMail app doesn't allow this. It used to work previously, but they have since secured it so that only Google apps can query the email content provider. The best you can do is get the number of messages with the labels API. You can get an authentication token (ClientLogin or OAuth2) for Google services using the standard Android AccountManager
. You will then have to use it to connect to the particular API to get the actual data.
这篇关于使用 SyncAdapter 与 *local* gmail 和 facebook 应用程序数据同步的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 SyncAdapter 与 *local* gmail 和 facebook 应用程序数据同步
基础教程推荐
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01