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]; }