Hi, I have a taiga server installed using source code. I managed to get the saml-auth-contrib plugin to work for okta. So when i press “sign in with saml”, i get redirected to our okta sign in. i get authenticated fine (we’re seeing okta authentication successful). but when it return to my taiga URL, it shows 405 not allowed error
can you help me check this? As per the instruction on the plugin, most of the sp details are set automatically. But on okta side, it’s set as:
Single Sign-On URL
http://my.taiga.company.com/login?next=%252FdiscoverAudience Restriction
http://my.taiga.company.com/login?next=%252FdiscoverSign-out URL
http://my.taiga.company.com/discover
i have also enabled CORS:
CORS_ALLOW_ALL_ORIGINS = True
# Other options you might consider:
CORS_ALLOW_CREDENTIALS = True
CORS_ALLOW_HEADERS = [
'content-type',
'authorization',
]
Im stuck on what else could be the issue
Thank you!