Home > OS >  Data coverts to some other form while sending an API request in my Flutter App
Data coverts to some other form while sending an API request in my Flutter App

Time:09-23

I am trying to send an API request in my flutter App for filtering the items in my app. I want the data to be filtered between certain 2 numbers.

This is what I want.

http://3.237.223.130/careWorker/get-parttime-jobList?workingHoursFrom=02.30&workingHoursTo=03.00

but the API call going from the app looks like this

http://3.237.223.130/careWorker/get-parttime-jobList?workingHoursFrom=02:30&workingHoursTo=03:00

The '.' is being converted into ':'

How can I send the API request in the form I want?

CodePudding user response:

Both of them is the same value.

Seems like the query parameters are being urlEncoded while sending via API.

I have attached the image to show you the example.

enter image description here

You can test the URL encoded and decoded value HERE.

CodePudding user response:

Probably you are concatenating your data wrong... Can you give more details of how are you doing your request?

  • Related