When I'm logging into Facebook, in socialAuthAdapter.getCurrentProvider().getAccessGrant().getKey() I have accessToken for Facebook, and it works fine.
When I'm logging into Linkedin in socialAuthAdapter.getCurrentProvider().getAccessGrant().getKey() and socialAuthAdapter.getCurrentProvider().getAccessGrant().getSecret() I have authorizationToken credentials, not accessToken.
In my application I used custom login to Linkedin, where I'm getting with authorizationToken -> accessToken (separate requests to Linkedin API). 1st call to https://www.linkedin.com/uas/oauth2/authorization, 2nd call to https://www.linkedin.com/uas/oauth2/accessToken.
Is it possible to save in socialAuthAdapter.getCurrentProvider().getAccessGrant().getKey() accessToken for Linkedin?
When I'm logging into Facebook, in
socialAuthAdapter.getCurrentProvider().getAccessGrant().getKey()
I have accessToken for Facebook, and it works fine.When I'm logging into Linkedin in
socialAuthAdapter.getCurrentProvider().getAccessGrant().getKey()
andsocialAuthAdapter.getCurrentProvider().getAccessGrant().getSecret()
I have authorizationToken credentials, not accessToken.In my application I used custom login to Linkedin, where I'm getting with
authorizationToken
->accessToken
(separate requests to Linkedin API). 1st call tohttps://www.linkedin.com/uas/oauth2/authorization
, 2nd call tohttps://www.linkedin.com/uas/oauth2/accessToken
.Is it possible to save in
socialAuthAdapter.getCurrentProvider().getAccessGrant().getKey()
accessToken for Linkedin?