From de0725b330ab43c1a3d6c84d961cf01183783f1e Mon Sep 17 00:00:00 2001 From: Jaana Burcu Dogan Date: Wed, 8 Feb 2017 15:51:47 -0800 Subject: [PATCH] internal: add Facebook Graph API to the brokens list CL/23790 breaks the calls to Facebook, adding Facebook to the brokens list is reported to fix the problem. Fixes golang/oauth2#214. Change-Id: I3b3440de723b4933bc49b5a52698c825affbf643 Reviewed-on: https://go-review.googlesource.com/36633 Reviewed-by: Brad Fitzpatrick Reviewed-by: Chris Broadfoot --- internal/token.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/token.go b/internal/token.go index 2c1b857..ba90a34 100644 --- a/internal/token.go +++ b/internal/token.go @@ -91,6 +91,7 @@ func (e *expirationTime) UnmarshalJSON(b []byte) error { var brokenAuthHeaderProviders = []string{ "https://accounts.google.com/", + "https://api.codeswholesale.com/oauth/token", "https://api.dropbox.com/", "https://api.dropboxapi.com/", "https://api.instagram.com/", @@ -101,6 +102,7 @@ var brokenAuthHeaderProviders = []string{ "https://api.twitch.tv/", "https://app.box.com/", "https://connect.stripe.com/", + "https://graph.facebook.com", // see https://github.com/golang/oauth2/issues/214 "https://login.microsoftonline.com/", "https://login.salesforce.com/", "https://oauth.sandbox.trainingpeaks.com/", @@ -118,7 +120,6 @@ var brokenAuthHeaderProviders = []string{ "https://www.wunderlist.com/oauth/", "https://api.patreon.com/", "https://sandbox.codeswholesale.com/oauth/token", - "https://api.codeswholesale.com/oauth/token", } func RegisterBrokenAuthHeaderProvider(tokenURL string) {