Android / iOS - Custom URI / Protocol Handling Android / iOS - Custom URI / Protocol Handling ios ios

Android / iOS - Custom URI / Protocol Handling


EDIT 5/2014, as this seems to be a popular question I've added much detail to the answer:

Android:

For Android, refer to Intent Filter to Launch My Activity when custom URI is clicked.

You use an intent-filter:

<intent-filter>  <action android:name="android.intent.action.VIEW" />   <category android:name="android.intent.category.DEFAULT" />   <category android:name="android.intent.category.BROWSABLE" />   <data android:scheme="myapp" /> </intent-filter>

this is attached to the Activity that you want launched. For example:

<activity android:name="com.MyCompany.MyApp.MainActivity" android:label="@string/app_name">  <intent-filter>      <action android:name="android.intent.action.MAIN" />      <category android:name="android.intent.category.LAUNCHER" />  </intent-filter>  <intent-filter>      <action android:name="android.intent.action.VIEW" />      <category android:name="android.intent.category.DEFAULT" />      <category android:name="android.intent.category.BROWSABLE" />       <data android:scheme="myapp" android:host="com.MyCompany.MyApp" />  </intent-filter></activity>

Then, in your activity, if not running, the activity will be launched with the URI passed in the Intent.

Intent intent = getIntent();Uri openUri = intent.getData();

If already running, onNewIntent() will be called in your activity, again with the URI in the intent.

Lastly, if you instead want to handle the custom protocol in UIWebView's hosted within your native app, you can use:

myWebView.setWebViewClient(new WebViewClient(){ public Boolean shouldOverrideUrlLoading(WebView view, String url) {  // inspect the url for your protocol }});

iOS:

For iOS, refer to Lauching App with URL (via UIApplicationDelegate's handleOpenURL) working under iOS 4, but not under iOS 3.2.

Define your URL scheme via Info.plist keys similar to:

<key>CFBundleURLTypes</key>    <array>        <dict>            <key>CFBundleURLName</key>            <string>com.yourcompany.myapp</string>        </dict>        <dict>            <key>CFBundleURLSchemes</key>            <array>                <string>myapp</string>            </array>        </dict>    </array>

Then define a handler function to get called in your app delegate

- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation{ // parse and validate the URL}

If you want to handle the custom protocol in UIWebViews hosted within your native app, you can use the UIWebViewDelegate method:

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{ NSURL *urlPath = [request URL]; if (navigationType == UIWebViewNavigationTypeLinkClicked) {    // inspect the [URL scheme], validate    if ([[urlPath scheme] hasPrefix:@"myapp"])     {      ...    }  }}

}

For WKWebView (iOS8+), you can instead use a WKNavigationDelegate and this method:

- (void)webView:(WKWebView *)webView decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler{ NSURL *urlPath = navigationAction.request.URL;   if (navigationAction.navigationType == WKNavigationTypeLinkActivated) {   // inspect the [URL scheme], validate   if ([[urlPath scheme] hasPrefix:@"myapp"])   {    // ... handle the request    decisionHandler(WKNavigationActionPolicyCancel);    return;   } } //Pass back to the decision handler decisionHandler(WKNavigationActionPolicyAllow);}


Update: This is a very old question, and things have changed a lot on both iOS and Android. I'll leave the original answer below, but anyone working on a new project or updating an old one should instead consider using deep links, which are supported on both platforms.

On iOS, deep links are called universal links. You'll need to create a JSON file on your web site that associates your app with URLs that point to parts of your web site. Next, update your app to accept a NSUserActivity object and set up the app to display the content that corresponds to the given URL. You also need to add an entitlement to the app listing the URLs that the app can handle. In use, the operating system takes care of downloading the association file from your site and starting your app when someone tries to open one of the URLs your app handles.

Setting up app links on Android works similarly. First, you'll set up an association between your web site(s) and your app, and then you'll add intent filters that let your app intercept attempts to open the URLs that your app can handle.

Although the details are obviously different, the approach is pretty much the same on both platforms. It gives you the ability to insert your app into the display of your web site's content no matter what app tries to access that content.


Original answer:

For iOS, yes, you can do two things:

  1. Have your app advertise that it can handle URL's with a given scheme.

  2. Install a protocol handler to handle whatever scheme you like.

The first option is pretty straightforward, and described in Implementing Custom URL Schemes. To let the system know that your app can handle a given scheme:

  • update your app's Info.plist with a CFBundleURLTypes entry

  • implement -application:didFinishLaunchingWithOptions: in your app delegate.

The second possibility is to write your own protocol handler. This works only within your app, but you can use it in conjunction with the technique described above. Use the method above to get the system to launch your app for a given URL, and then use a custom URL protocol handler within your app to leverage the power of iOS's URL loading system:

  • Create a your own subclass of NSURLProtocol.

  • Override +canInitWithRequest: -- usually you'll just look at the URL scheme and accept it if it matches the scheme you want to handle, but you can look at other aspects of the request as well.

  • Register your subclass: [MyURLProtocol registerClass];

  • Override -startLoading and -stopLoading to start and stop loading the request, respectively.

Read the NSURLProtocol docs linked above for more information. The level of difficulty here depends largely on what you're trying to implement. It's common for iOS apps to implement a custom URL handler so that other apps can make simple requests. Implementing your own HTTP or FTP handler is a bit more involved.

For what it's worth, this is exactly how PhoneGap works on iOS. PhoneGap includes an NSURLProtocol subclass called PGURLProtocol that looks at the scheme of any URL the app tries to load and takes over if it's one of the schemes that it recognizes. PhoneGap's open-source cousin is Cordova -- you may find it helpful to take a look.


For the second option in your question:

http://myapp.com/events/3/

There was a new technique introduced with iOS 9, called Universal Links which allows you to intercept links to your website, if they are https://

https://developer.apple.com/library/content/documentation/General/Conceptual/AppSearch/UniversalLinks.html