Skip to content

GET parameters are not being send in Python3 #19

@wojtek-fliposports

Description

@wojtek-fliposports

I was forced to rewrote get_request_params method to:

    def get_request_params(self, request):
        """
        Fixing returning DICT
        :param request:
        :return:
        """
        if request.query_params:
            qp = request.query_params.copy()
            for param in self.proxy_settings.DISALLOWED_PARAMS:
                if param in qp:
                    del qp[param]
            # was return six.iterlists(qp)
            return qp
        return {}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions