-
Notifications
You must be signed in to change notification settings - Fork 991
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
oauth2: parse RFC 6749 error response #610
Conversation
af3f4b1
to
a2263fc
Compare
This PR (HEAD: a2263fc) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/oauth2/+/451076 to see it. Tip: You can toggle comments from me using the |
a2263fc
to
8679a32
Compare
This PR (HEAD: 8679a32) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/oauth2/+/451076 to see it. Tip: You can toggle comments from me using the |
8679a32
to
cefb6d2
Compare
This PR (HEAD: cefb6d2) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/oauth2/+/451076 to see it. Tip: You can toggle comments from me using the |
cefb6d2
to
cffa1bd
Compare
This PR (HEAD: cffa1bd) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/oauth2/+/451076 to see it. Tip: You can toggle comments from me using the |
cffa1bd
to
40ae513
Compare
This PR (HEAD: 40ae513) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/oauth2/+/451076 to see it. Tip: You can toggle comments from me using the |
This PR (HEAD: 800ea71) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/oauth2/+/451076 to see it. Tip: You can toggle comments from me using the |
Message from Dmitri Shuralyov: Patch Set 8: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
Message from Matt Hickford: Patch Set 11: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
Message from Matt Hickford: Patch Set 11: Run-TryBot+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
Message from Gopher Robot: Patch Set 11: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
Message from Gopher Robot: Patch Set 11: TryBot-Result+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
Message from Matt Hickford: Patch Set 11: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
Message from Matt Hickford: Patch Set 11: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
This PR (HEAD: cbc7e73) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/oauth2/+/451076 to see it. Tip: You can toggle comments from me using the |
This PR (HEAD: 7d8a7b1) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/oauth2/+/451076 to see it. Tip: You can toggle comments from me using the |
Message from Damien Neil: Patch Set 15: Run-TryBot+1 (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
Message from Gopher Robot: Patch Set 15: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
Message from Gopher Robot: Patch Set 15: TryBot-Result+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
This PR (HEAD: 0030e27) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/oauth2/+/451076 to see it. Tip: You can toggle comments from me using the |
Message from Matt Hickford: Patch Set 17: Run-TryBot+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
Message from Gopher Robot: Patch Set 17: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
Message from Damien Neil: Patch Set 17: Code-Review+2 Run-TryBot+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
Message from Gopher Robot: Patch Set 17: TryBot-Result+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
Message from Cody Oss: Patch Set 17: Code-Review+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
Message from Matt Hickford: Patch Set 17: Code-Review+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/451076. |
Parse error response described in https://datatracker.ietf.org/doc/html/rfc6749#section-5.2 Handle unorthodox servers responding 200 in error case. Implements API changes in accepted proposal golang/go#58125 Fixes #441 Fixes #274 Updates #173 Change-Id: If9399c3f952ac0501edbeefeb3a71ed057ca8d37 GitHub-Last-Rev: 0030e27 GitHub-Pull-Request: #610 Reviewed-on: https://go-review.googlesource.com/c/oauth2/+/451076 Run-TryBot: Matt Hickford <[email protected]> Run-TryBot: Damien Neil <[email protected]> Reviewed-by: Matt Hickford <[email protected]> Reviewed-by: Damien Neil <[email protected]> Reviewed-by: Cody Oss <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
This PR is being closed because golang.org/cl/451076 has been merged. |
Parse error response described in https://datatracker.ietf.org/doc/html/rfc6749#section-5.2
Handle unorthodox servers responding 200 in error case.
Implements API changes in accepted proposal golang/go#58125
Fixes #441
Fixes #274
Updates #173