Indexing apps to run iOS?

I'm trying to add an Indexing app, but the method [GSDDeepLink handleDeepLink:url];

returns the same gsd-MY_URL: // when it should misinform it into MY_URL: //. As you can see here, Indexing Applications , the snippet is really simple. My code is the same as in the docs,

DLog(@"url recieved: %@", url);
NSURL *sanitizedURL = [GSDDeepLink handleDeepLink:url];
DLog(@"sanitizedURL: %@", sanitizedURL);

      

This is the last sanitizedURL, returns the whole url, not sanitized

Since it is available in a limited edition, I'm not sure if this method works or if I'm doing something wrong.

I already have a deep link from my webpage and it works great and it shouldn't hurt, but it does. Any information on this?

+3


source to share





All Articles