从 App 启动 Periscope
Launch Periscope from App
如何通过 IBAction 从您的应用程序启动 Periscope。我想直接转到用户的潜望镜配置文件。
我尝试了以下方法:
NSString *periscopeURL = @"periscope://";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:periscopeURL]];
我使用类似的代码打开 Twitter ...并且它有效...不知道为什么它不适用于潜望镜。
非常感谢任何指点!
潜望镜应用的URL是"pscp://"
。我只是从推特上找到的。 https://twitter.com/viticci/status/581105793916891136
阿尔伯特是正确的。我们的方案是pscp://
给link直接给一个广播id,格式为:
pscp://broadcast/<broadcast id>
对于用户:
pscp://user/<user id>
但是,我们还没有 public 查找用户 ID(目前)。抱歉...
如何通过 IBAction 从您的应用程序启动 Periscope。我想直接转到用户的潜望镜配置文件。
我尝试了以下方法:
NSString *periscopeURL = @"periscope://";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:periscopeURL]];
我使用类似的代码打开 Twitter ...并且它有效...不知道为什么它不适用于潜望镜。
非常感谢任何指点!
潜望镜应用的URL是"pscp://"
。我只是从推特上找到的。 https://twitter.com/viticci/status/581105793916891136
阿尔伯特是正确的。我们的方案是pscp://
给link直接给一个广播id,格式为:
pscp://broadcast/<broadcast id>
对于用户:
pscp://user/<user id>
但是,我们还没有 public 查找用户 ID(目前)。抱歉...