我正在尝试通过LinkedIn使用oauth2,但是当从LinkedIn进行回调时,春季启动oauth2尝试进行身份验证并失败,并显示“ client_id丢失”。
这是我用来制作oauth2 https://www.callicoder.com/spring-boot-security-oauth2-social-login-part-1/的教程 我想对其进行编辑以与Linkedin合作
这是我的应用程序。yml
linkedin:
clientId: 77smtc5d5vlp8h
clientSecret: *******
redirectUriTemplate: '{baseUrl}/oauth2/callback/{registrationId}'
authorization-grant-type: authorization_code
client-authentication-method: form
scope:
- r_basicprofile
- r_emailaddress
提供者:
linkedin:
authorization-uri: https://www.linkedin.com/oauth/v2/authorization
token-uri: https://www.linkedin.com/oauth/v2/accessToken
user-info-uri: https://api.linkedin.com/v2/people/~?format=json