I’m trying to open a prezi.com presentation from my app.
NSURL *url = [ [ NSURL alloc ] initWithString: @"prezi://open?oid=ftv9hvziwqi2" ];
[[UIApplication sharedApplication] openURL:url];
This piece of code opens the app, but not the presentation. When you visit this link on your ipad you get a page with a link the open the presentation.
http://prezi.com/ftv9hvziwqi2/coca-cola-companya/
But I can figure out the correct URL for opening a presentation in the prezi app. And i cant find any documentation from this either on the prezi site.
I too, was interested in this so I had a little look into it.
If you visit the hyperlink (http://prezi.com/ftv9hvziwqi2/coca-cola-companya/) on an iPad, it gives you the link required to open the presentation in the Prezi app.
This is it:-
It turns out there is a second parameter called ‘details’, which is base64 encoded. When I decoded it, the details look like this:-
I’m guessing this ‘details’ parameter is required, so try creating your own and base64 encoding it. Good luck!
Edit: A much simpler possibility is to direct the user to safari. That way they can still open the Prezi app, and you don’t have to create any weird details yourself.