-2

Over the past few weeks i have been dealing with a lot of web authentication processes which can be a pain. Are there some online url encode-decoding conversion websites?

This can be helpful for services that provide API playgrounds for easy understanding of authentication process.

phihag
  • 278,196
  • 72
  • 453
  • 469
big kev
  • 307
  • 2
  • 8
  • There are plenty of questions that talk about encoding urls: http://stackoverflow.com/questions/332872/encode-url-in-javascript?rq=1 – David May 04 '16 at 19:55

1 Answers1

0

In terms to test the auth request and encode url, I would like to recommend a Chrome extension, Postman.

In Postman, parameters you enter in the URL bar or in the key/value editor will not automatically be URL-encoded. Right click on a piece of selected text, and click EncodeURIComponent to manually encode the parameter value.

enter image description here

You can individually add key/value pairs and Postman will combine everything together. If your URL already has parameters - for example, if you are pasting a URL from some other source, Postman will split the URL into pairs automatically.

Hongbin Wang
  • 1,186
  • 2
  • 14
  • 34