jtaylor wrote: ↑Wed Dec 22, 2021 2:44 pmI know user/password in POSTMAN doesn't work, and I guessed it was the weird user:password encoded as one string.
Can you explain this better?
The standard for basic authentication is to concatenate the userid and password (with a colon between them) and then base64 encode it. That sounds exactly like what you are describing, right?
This is part of the core HTTP standard, required for all HTTP clients to implement. I know that PostMan does, in fact, work fine with this -- I've used it before. All web browsers support it. SoapUI supports it. Everything does -- it's the most common authentication type out there.
Or, are you saying that instead of user:password you have a string that doesn't contain two separate parts, but has a single string without the colon? That would indeed be weird, and would not be following the HTTP standard. (You can do different authentication types following your own scheme, but you can't refer to them as "basic")