我想通过 google 登录以使用我的 iphone 应用程序进行身份验证并共享资源。是否有任何 API 或教程可用于将 Google 集成到最新 IOS 的 iPhone 应用程序中。
问问题
1701 次
2 回答
1
https://github.com/robbiehanson/XMPPFramework
要登录谷歌,您必须提供“用户名”、“密码”和谷歌服务器名称,即“talk.google.com”
请参阅上面的 xmppchat application.in APPDelegate.m 委托方法的链接,其中一种方法是 didAuthenticate 方法
- (void)xmppStreamDidAuthenticate:(XMPPStream *)sender
{
}
以上方法验证用户名和密码是否正确。如果用户名和密码正确,则它会向您的朋友在线显示您。
于 2012-07-10T13:44:04.563 回答
0
Google API 的 Objective-C 库位于
于 2012-07-10T21:16:34.210 回答