We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b67847e commit 94d1d5bCopy full SHA for 94d1d5b
providers/linkedin/linkedin_test.go
@@ -35,7 +35,7 @@ func Test_BeginAuth(t *testing.T) {
35
session, err := provider.BeginAuth("test_state")
36
s := session.(*linkedin.Session)
37
a.NoError(err)
38
- a.Contains(s.AuthURL, "linkedin.com/uas/oauth2/authorization")
+ a.Contains(s.AuthURL, "linkedin.com/oauth/v2/authorization")
39
a.Contains(s.AuthURL, fmt.Sprintf("client_id=%s", os.Getenv("LINKEDIN_KEY")))
40
a.Contains(s.AuthURL, "state=test_state")
41
a.Contains(s.AuthURL, "scope=r_basicprofile+r_emailaddress&state")
0 commit comments