OAuth 2.0 provides an easier way to authorize users compared to OAuth 1.0 by relying on SSL instead of complex signatures. The process involves registering an app, redirecting the user to LinkedIn for authorization, and upgrading the authorization code for an access token. Open source libraries are available to help implement OAuth 2.0 in various programming languages.
1 of 21
More Related Content
OAuth2 and LinkedIn
1. Using Oauth2 with
LinkedIn
Kamyar Mohager
LinkedIn Platform Team
Developer Relations
6. Secure, but¡
?? Relies on a calculated signature to ensure
security between server and consumer
?? Secure for end user but pain for
developer to implement
?? Dif?cult to debug 401 unauthorized when
signature is bad (nonce, timestamp, etc)
?? Not all OAuth libraries are created equal
Developer Relations
8. OAuth 2.0
?? Easier to code
?? Relies on SSL instead of complicated
signatures
?? Still provides secure authorization for
end user
?? Supports scopes for granular member
permissions
Developer Relations
9. LinkedIn + OAuth 2.0
How easy is it to authorize a
LinkedIn user to my app??
Developer Relations