Skip to content
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

Bugfix: Enable non-ascii characters in JWT #79

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Feb 20, 2023

  1. Bugfix: Enable non-ascii characters in JWT

    Problem: When processing the response from an OpenID-Provider, the
    string is not decoded using UTF-8. Therefore, no non-ascii
    characters like german "Umlaute" (like ä, ü, ö) are possible in
    the JWT and therefore in the name in the JWT (like Jürgen).
    
    Fix: in `lib/src/http_util.dart` `_processResponse`: before calling
    `json.decode` of the response, first decode it via `utf8.decode`.
    
    Result: Umlaute and other non-ascii characters are now possible
    in the JWT and its fields like the name.
    tom-010 committed Feb 20, 2023
    Configuration menu
    Copy the full SHA
    e24d41e View commit details
    Browse the repository at this point in the history