Browse Source

Fixes https://github.com/dexidp/dex/issues/2537

Signed-off-by: Shivansh Vij <shivanshvij@outlook.com>
pull/2538/head
Shivansh Vij 4 years ago committed by Shivansh Vij
parent
commit
cbf158bcc0
No known key found for this signature in database
GPG Key ID: 77E32CE606C64564
  1. 4
      server/deviceflowhandlers.go

4
server/deviceflowhandlers.go

@ -141,6 +141,10 @@ func (s *Server) handleDeviceCode(w http.ResponseWriter, r *http.Request) {
// https://tools.ietf.org/html/rfc8628#section-3.2
w.Header().Set("Cache-Control", "no-store")
// Response type should be application/json according to
// https://datatracker.ietf.org/doc/html/rfc6749#section-5.1
w.Header().Set("Content-Type", "application/json")
enc := json.NewEncoder(w)
enc.SetEscapeHTML(false)
enc.SetIndent("", " ")

Loading…
Cancel
Save