HBP Identity login failure: 401 Client Error: Authorization Required


#1

I’ve got my OIDC Connect Client manager set up. It seems that I’ve got all the dependencies set up in my django application (using hbp_app_python_auth package).

It seems that I get through the first part of the authentication, but it doesn’t complete to the point where it hits my callback url. I’m getting a 401 unauthorized error when trying to access https://services.humanbrainproject.eu/oidc/token

Any ideas?


#2

Found the problem.

My callback URL (on my local test machine) looked like this:

https://localhost:8000/complete/bbp

when it should have looked like this:

https://localhost:8000/complete/bbp/

Now it works. W00t!