0

I want to know if there's an URI scheme for Wordpress app, like there's for faceboook or for twitter. This helps inter-app communication for iOS/Mac OS X and for Android

EDIT: I'm not asking for my own customized scheme uris, but the one for the wordpres.com official app.

Community
  • 1
  • 1
Akronix
  • 1,858
  • 2
  • 19
  • 32
  • @Liam I'm not asking for any recommendation. How is this different from asking for facebook uri schemes uses or any other app schemes like the many I have seen previously in SO with no complains? – Akronix Nov 25 '16 at 14:08

1 Answers1

0

You need to register your own uri scheme, its will be uniq for your app only (you can use bundle id for this) something like appscheme:// by tapping on url like this appscheme://additonal_data?data=1 you will be redirect to your app and can retrieve params in appDelegate

BUT

Starting at ios 9 you can use appGroups its more efficient method

docs

Vadim Kozak
  • 420
  • 3
  • 11