I'm using pythons in backend and i like to get some data through URL, simply i can say as through REST. My URL works with single param but fails for two params. Please refer below two URL
Single param:
curl -XPUT -HContent-type:text/plain --data "stuff:morestuff" <URL>?attr1=testvalue
Two param:
curl -XPUT -HContent-type:text/plain --data "stuff:morestuff" <URL>?attr1=testvalue&attr2=133
I cross verify that, python code is correct.