I have a website and I want to use openId connect to authentic user via Google or LinkedIn. I have create a program with authentic user via Google. I am little bit confused that request I am for google is exactly same as used in oauth2, only difference in scope parameter which I passed.
https://accounts.google.com/o/oauth2/v2/auth?
client_id=xxxxxxxxxxxxxxxxxxxx&
response_type=code&scope=openid%20email&redirect_uri=http://example.com/abc&state=fb25331d49034379a46ba62a31a
after this there is one more call to get access token. I did not see any difference in request between openId-connect and oauth2.
Also, I want to make generic method which can authentic via google and linkedIn. Is openId connect provide a standard method to authentic via multiple IDP.
Thanks.