LinkedInSignIn alternatives and similar libraries
Based on the "Authentication" category.
Alternatively, view LinkedInSignIn alternatives based on common mentions on social networks and blogs.
-
Simplicity
A simple way to implement Facebook and Google login in your iOS apps. -
Heimdallr.swift
Easy to use OAuth 2 library for iOS, written in Swift. -
SwiftyOAuth
A simple OAuth library for iOS with a built-in set of providers -
AuthenticationViewController
A simple to use, standard interface for authenticating to oauth 2.0 protected endpoints via SFSafariViewController. -
Swift Starter Kit ๐๐๐ฅ๐ฅ
Swift Starter Kit with Firebase & Facebook Login Onboarding -
InstagramSimpleOAuth
A quick and simple way to authenticate an Instagram user in your iPhone or iPad app. -
OhMyAuth
:closed_lock_with_key: Simple OAuth2 library with a support of multiple services. -
InstagramLogin
A simple way to authenticate Instagram accounts on iOS. -
DropboxSimpleOAuth
A quick and simple way to authenticate a Dropbox user in your iPhone or iPad app. -
InstagramAuthViewController
A UIViewController subclass for Instagram authentication. -
BoxSimpleOAuth
A quick and simple way to authenticate a Box user in your iPhone or iPad app. -
SwiftUserManager
A usermanager written in swift saves you from hassle of saving your active user session.
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of LinkedInSignIn or a related project?
README
LinkedInSignIn
Example
To run the example project, clone the repo, and run pod install
from the Example directory first.
Also you need to setup app on LinkedIn and fill in dictionary with your app credetials:
let linkedinCredentilas = [
"linkedInKey": "",
"linkedInSecret": "",
"redirectURL": ""
]
Login proces is simple as:
let linkedInConfig = LinkedInConfig(linkedInKey: linkedinCredentilas["linkedInKey"]!, linkedInSecret: linkedinCredentilas["linkedInSecret"]!, redirectURL: linkedinCredentilas["redirectURL"]!)
let linkedInHelper = LinkedinHelper(linkedInConfig: linkedInConfig)
linkedInHelper.login(from: self, completion: { (accessToken) in
let alertVC = UIAlertController(title: "Success", message: "Your access token is : \(accessToken)!", preferredStyle: .alert)
alertVC.addAction(UIAlertAction(title: "Ok", style: .default, handler: { _ in
alertVC.dismiss(animated: true, completion: nil)
}))
self.present(alertVC, animated: true, completion: nil)
}) { error in
print(error.localizedDescription)
}
<!--## Requirements -->
Installation
LinkedInSignIn is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'LinkedInSignIn'
Author
Github: Serhii Londar
Email: [email protected]
License
LinkedInSignIn is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the LinkedInSignIn README section above
are relevant to that project's source code only.