miniflux-v2/vendor/gopkg.in/square/go-jose.v2/json
Patrick 3e1e0b604f
Add generic OpenID Connect provider (OAuth2)
This adds the oauth2 provider `oidc`. It needs an additional argument, the OIDC discovery endpoint to figure out where the auth and token URLs are.

Configuration is similar to setting up the Google Authentication with these changes:

 * `OAUTH2_PROVIDER = oidc`
 * `OAUTH2_OIDC_DISCOVERY_ENDPOINT = https://auth.exampe.org/discovery`
2020-03-07 18:45:19 -08:00
..
LICENSE Add generic OpenID Connect provider (OAuth2) 2020-03-07 18:45:19 -08:00
README.md Add generic OpenID Connect provider (OAuth2) 2020-03-07 18:45:19 -08:00
decode.go Add generic OpenID Connect provider (OAuth2) 2020-03-07 18:45:19 -08:00
encode.go Add generic OpenID Connect provider (OAuth2) 2020-03-07 18:45:19 -08:00
indent.go Add generic OpenID Connect provider (OAuth2) 2020-03-07 18:45:19 -08:00
scanner.go Add generic OpenID Connect provider (OAuth2) 2020-03-07 18:45:19 -08:00
stream.go Add generic OpenID Connect provider (OAuth2) 2020-03-07 18:45:19 -08:00
tags.go Add generic OpenID Connect provider (OAuth2) 2020-03-07 18:45:19 -08:00

README.md

Safe JSON

This repository contains a fork of the encoding/json package from Go 1.6.

The following changes were made:

  • Object deserialization uses case-sensitive member name matching instead of case-insensitive matching. This is to avoid differences in the interpretation of JOSE messages between go-jose and libraries written in other languages.
  • When deserializing a JSON object, we check for duplicate keys and reject the input whenever we detect a duplicate. Rather than trying to work with malformed data, we prefer to reject it right away.