- Install Plugin.LinkedIn package into your iOS project.
- Complete the LinkedIn Developer Console to include the required configuration to your LinkedIn project.
Override the OpenUrl method from AppDelegate class:
public override bool OpenUrl(UIApplication application, NSUrl url, string sourceApplication, NSObject annotation)
{
return LinkedInClientManager.OpenUrl(application, url, sourceApplication, annotation);
}
<= Back to Table of Contents