I'm attempting some testing performing GET HTTP Request. I seem to be having issues authenticating as I keep receiving the following errors:
"error authenticating you"
I'm attempting to use username + token:
e.g.
Authorization Basic joesmoe@microsoft.com/token:asdfkjalksdjfiojerio92nmnsasdflkjsadlfdd
I've also tried encoding the following:
joesmoe@microsoft.com/token:asdfkjalksdjfiojerio92nmnsasdflkjsadlfdd which turns into the following
am9lc21vZUBtaWNyb3NvZnQuY29tL3Rva2VuOmFzZGZramFsa3NkamZpb2plcmlvOTJubW5zYXNkZmxranNhZGxmZGQ=
Authorization: Basic am9lc21vZUBtaWNyb3NvZnQuY29tL3Rva2VuOmFzZGZramFsa3NkamZpb2plcmlvOTJubW5zYXNkZmxranNhZGxmZGQ=
Does anyone else see a problem with how the request is structure?