In my browser it returns the correct json
http://localhost:8008/api/instsets/?genre=rock
Howeber in dart code
final response = await http.get(Uri.http('localhost:8008', 'api/instsets/?genre=rock'));
It returns 404 error.
Without query, it works,
final response = await http.get(Uri.http('localhost:8008', 'api/instsets'));
Where should I fix??