0

How can you launch Periscope from your applications via IBAction. I'd like to go directly to a user's periscope profile.

I tried the following:

NSString *periscopeURL = @"periscope://";

        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:periscopeURL]];

I used similar code to open twitter ...and it worked.. not sure why it's not working for periscope.

any pointers are greatly appreciated!

TheRealRonDez
  • 2,807
  • 2
  • 30
  • 40

2 Answers2

2

The URL for periscope application is "pscp://". I just found it from a tweet. https://twitter.com/viticci/status/581105793916891136

cloudy45man
  • 391
  • 2
  • 19
0

Albert is correct. Our scheme is pscp://

To link directly to a broadcast id, the format is:

pscp://broadcast/<broadcast id>

For a user:

pscp://user/<user id>

However, we do not have a public lookup for a user's id (yet). Sorry...

Aaron Wasserman
  • 1,249
  • 11
  • 8
  • hello....I'm trying to make a app background like periscope i.e. live background...it works but it stuck on call interruption..I did try to restart session but not works....So can you please share me how to continue session regardless interruption...thanks .... – Bhavin Bhadani Feb 12 '16 at 05:01
  • Hey Aaron, Don't suppose you have a way to take a user to the search box with #something? – Gerard Wilkinson Jul 07 '16 at 17:24