We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d03d9f8 commit 1d11cb4Copy full SHA for 1d11cb4
provider.go
@@ -60,12 +60,27 @@ var Google = &Provider{
60
Scope: "openid email profile",
61
}
62
63
+// Yahoo provider
64
var Yahoo = &Provider{
65
Name: "yahoo",
66
URL: "https://login.yahoo.com",
67
Scope: "openid openid2 email profile",
68
69
70
+// Paypal live provider
71
+var Paypal = &Provider{
72
+ Name: "paypal",
73
+ URL: "https://www.paypalobjects.com",
74
+ Scope: "openid email profile",
75
+}
76
+
77
+// PaypalSandbox provider
78
+var PaypalSandbox = &Provider{
79
80
81
82
83
84
// WithCredential sets client id and secret for a Provider
85
func (p *Provider) WithCredential(id, secret string) *Provider {
86
if id == "" || secret == "" {
0 commit comments