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

Fix issue with query string parsing #111

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

Commits on Mar 24, 2022

  1. Fix issue with query string parsing

    This issue was leading to incorrect message digests which led to a 403
    forbidden error.
    
    The query parameter 'fields' needed to be decoded before use. Otherwise,
    it would be encoded twice somewhere inside the request.META.get
    (i think -unconfirmed)
    
    i.e
    ,(comma) -> %2C -> %252C
    
    This extra encoding caused the message digests to mismatch leading to
    the 403 error.
    klowe0100 committed Mar 24, 2022
    Configuration menu
    Copy the full SHA
    90245b1 View commit details
    Browse the repository at this point in the history