[Answered ]-Django url parameters

2👍

Views support this out of the box. To get the parameters you can do request.GET.get('feature'), which would return 1 in your example.

0👍

try

 url(r'^/api/objects/\/?feature=(?P<number>.*)...),

Leave a comment