Re: About query strings in urls when using rest api

2019-05-03 Thread Tom Forbes
This mailing list is for the development of Django itself, not for support using Django. Please use the django-users mailing list for that, or IRC #django on freenode, or a site like Stack Overflow. Also, please never add private credentials in query strings like that. Use a POST request. > On

About query strings in urls when using rest api

2019-05-03 Thread Surajeet Das
I am actually developing an android app which will fetch data using an api . I am trying to pass multiple parameters in the url using query strings, but I am not able concatenate those parameters in the url. eg: U/userapi/?email=abc&pass=bcd I trying to achieve the above example. How do I take