Skip to content

Commit d9d12af

Browse files
committed
feat: add Yahoo provider
1 parent 3db1dff commit d9d12af

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

provider.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ var Google = &Provider{
5555
Scope: "openid email profile",
5656
}
5757

58+
var Yahoo = &Provider{
59+
Name: "yahoo",
60+
URL: "https://login.yahoo.com",
61+
Scope: "openid openid2 email profile",
62+
}
63+
5864
// WithCredential sets client id and secret for a Provider
5965
func (p *Provider) WithCredential(id, secret string) *Provider {
6066
if id == "" || secret == "" {

0 commit comments

Comments
 (0)