forked from Mirrors/oauth2
oauth2: Add Pushbullet to set of broken providers.
https://api.pushbullet.com/ accepts client_secret as a POST body parameter but not via HTTP basic auth, so it needs to be on this list. I have asked them to fix it properly too :-) Change-Id: Iff3cba20592c66d5a38755f47b05f1e992dfbad6 Reviewed-on: https://go-review.googlesource.com/7381 Reviewed-by: Andrew Gerrand <adg@golang.org>
This commit is contained in:
parent
2167774341
commit
7e88c64e80
|
@ -427,6 +427,7 @@ var brokenAuthHeaderProviders = []string{
|
||||||
"https://oauth.vk.com/",
|
"https://oauth.vk.com/",
|
||||||
"https://api.odnoklassniki.ru/",
|
"https://api.odnoklassniki.ru/",
|
||||||
"https://connect.stripe.com/",
|
"https://connect.stripe.com/",
|
||||||
|
"https://api.pushbullet.com/",
|
||||||
}
|
}
|
||||||
|
|
||||||
// providerAuthHeaderWorks reports whether the OAuth2 server identified by the tokenURL
|
// providerAuthHeaderWorks reports whether the OAuth2 server identified by the tokenURL
|
||||||
|
|
Loading…
Reference in New Issue