Google+ iOS应用的URIscheme?
我正在做一些很酷的事情,我想在iOS应用中链接到我的Google+个人资料。
有没有人知道如何使用iOS上的Google+应用程序提供的mgc://
URIscheme来打开特定的configuration文件,您可以使用fb://
, twitter://
和几乎所有其他基于帐户的iOS应用程序吗?
其实这很简单。 在Web浏览器中检查您的URL,并用gplus://
replacehttp://
或https://
gplus://
例如:
如果浏览器中的url为https://plus.google.com/u/0/100711776131865357077,则可以使用以下代码在应用中打开configuration文件。
NSURL *gPlusUrl = [NSURL URLWithString:@"gplus://plus.google.com/u/0/100711776131865357077"]; if ([[UIApplication sharedApplication] canOpenURL:gPlusUrl]) { [[UIApplication sharedApplication] openURL:gPlusUrl]; }
我知道这是一个旧的post,但我在这里find了解决scheme(只search“谷歌”)。 URLscheme是gplus://
。 我自己testing了这一点,并validation了它的工作。 用法示例:
NSURL *gPlusUrl = [NSURL URLWithString:@"gplus://"]; if ([[UIApplication sharedApplication] canOpenURL:gPlusUrl]) { [[UIApplication sharedApplication] openURL:gPlusUrl]; }
- 允许后,Googlelogin不会redirect到应用程序
- Google Plus API for iOS获取好友列表
- 无法使用GooglePlusPlatform从GooglePlusSample代码loginGoogle
- iOS:可以在Google Plus中发送或发布消息
- 如何在IOS Sdk中获取Google Plus圈子
- 我已经整合了谷歌加在我的IOS应用程序,但我无法获得当前login的用户的电子邮件ID
- Google Plus使用UIWebViewloginiOS
- Google plus API,用于在Facebook上发布信息
- 如何从iOS的Google Developers Console获取客户端密码?