2

I have implement all the required things in my application to enable url schema, and its working fine. I want to open my application from safari. I have pass one URL with parameter like : https://www.myURL.com/signup/callback?signupCode=123?id=20. I want to open my application whenever I press on this link. But its not working.

Please suggest to me what I can do to achieve this. I already added the required tags in the .plist file (see below screenshot for reference).

plist infomation

Manfred Radlwimmer
  • 13,257
  • 13
  • 53
  • 62
dipen gtl
  • 101
  • 1
  • 1
  • 2
  • Did you implement "- application:openURL:options:" ? ref: https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplicationDelegate_Protocol/index.html#//apple_ref/occ/intfm/UIApplicationDelegate/application:openURL:options: – firstinq Aug 29 '16 at 07:06
  • Yes, I do it. I also find it that I have to mplementing Custom URL Schemes, Do you know how to do this – dipen gtl Aug 29 '16 at 07:18

1 Answers1

0
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://www.myURL.com/signup/callback?signupCode=123?id=20"]];

This is actual code. But hear your link (https://www.myURL.com/signup/callback?signupCode=123?id=20) is not working. So problem is accure.

Keyur Hirani
  • 1,607
  • 14
  • 22