Sourav Mehra
Sourav Mehra

Reputation: 445

Passing special character as part of URI parameter

I have to pass a special character ('#') hash as part of my URI parameter while using Postman.

http://localhost:9082/client/rest/Retrieval/listemail?bookID=#1063

The below bookID value is not getting passed to the server. Can someone help.

Upvotes: 6

Views: 3564

Answers (1)

Danny Dainton
Danny Dainton

Reputation: 25921

You can use the built feature of Postman to help you with this. Simply, highlight the part of the URL that you would like to encode and right click.

This will display a context menu with the option to either Encode or Decode the selected value.

Postman

Upvotes: 8

Related Questions