I am creating an api in django in which I have a parameter (state_name) and the value of state_name can include '&' in its value which is causing certain problems ?
For example if my url is like
http://localhost:8080/api?state_name=jammu&kashmir&value=2
so in the above example when i try to fetch the values from the url it takes the value of state_name only 'jammu' and treats kashmir as a parameter?
What can i do to resolve this issue in django ?
jammu and kashmir?