Accessing query params

To access parameters passed along with the request, use the attribute query_params in request object

Eg, For the following payload from client

self.client.get(URL,{'name':'aravind'}

access in the server as,

self.request.query_params.get('name')