Postman - WSSE authorization header
January 21, 2021
Introduction # Some services’ API require authorization based on WSSE header. That means, that server expects X-WSSE header to contain string including username, encoded password, nonce and timestamp - where timestamp is also used as salt. So - since timestamp is involved in it - every request will require different value for this header - it must be calculated on the fly - in the moment when request is made. ...