Skip to main content

All Questions

2 votes
1 answer
601 views

How could I get metadata from my Python-Django project to implement the SSO?

I have a Python-Django project and I'm trying to integrate with a C#/.NET existing website SAML authentication, using their idp. I absolutely need to generate a metadata file to give to whoever ...
Luca's user avatar
  • 71
1 vote
0 answers
157 views

Python client connecting to SAML webserver with private certification path

I wish to connect to an internal webserver/webapp that offers services behind TLS and uses SAML2 for authentication within our organisation. This SSO works with my browser. I want to do this in >...
tristram's user avatar
  • 149
1 vote
0 answers
1k views

how to make an api protected in SSO implementation using fastapi

I have written a fastapi web service, which works as service provider and gets authenticated with Okta Single sign on idp using pysaml2 libraries. The login functionality works as expected. On ...
myquest4 sh's user avatar
1 vote
1 answer
390 views

ADFS saml response have encrypt with two algorithm how to process it?

Here is my SAML response: <samlp:Response ID="_f81c3493-8dc7-4f3e-a5c7-9a3681d1bd3e" Version="2.0" IssueInstant="2021-09-02T13:13:42.285Z" Destination="https://...
Kadhiresh Gajendiran's user avatar
4 votes
0 answers
947 views

Single sign on integration with angular app gives a CORS error on redirecting the SAML request

I'm trying to integrate my company's SSO to the web app I've developed. I'm using Angular in the frontend and Django as the backend. In order to create the SAML request, I'm using OneLogin's python-...
Harsh Pancholi's user avatar
6 votes
5 answers
10k views

Test Google SSO SAML on Localhost

The ACS url in the Google SSO SAML setup where Google is the Identity Provider has to start with https. Therefore, I've not been able to use a localhost url. Is there a way how I could test Google SSO ...
Vincent's user avatar
  • 1,554
1 vote
1 answer
604 views

CSRF Failed SSO Django after redirect

I'm trying to configure Google's SSO for my django app. Google is the Identity provider and my app is the Service provider. I'm using python3-saml for the SSO and I used the files like in the django ...
Vincent's user avatar
  • 1,554
3 votes
0 answers
1k views

Integrating with Google SSO SAML

I am trying to integrate Google SSO with an application. During the Google wizard to create the application it provides an SSO Url in the form of but I can't find much documentation about how to use ...
Alex Gonzalez's user avatar
0 votes
1 answer
426 views

How can I enable SSO strict mode if the issuer and identity provider ID are different?

I am working in a project that I recently inherited to make it production ready. One of the tasks is to enable strict mode for SSO, however once I do this it immediately fails. I am utilizing the '...
Rob Fyffe's user avatar
  • 729
4 votes
1 answer
6k views

SAML response signiture missing

I am trying to implement SAML2 SSO, I am getting an error saml2.sigver.SignatureError: Signature missing for response. I am using djangosaml2, in turn using pysaml2. It seems to hit an issue when ...
user3770935's user avatar
2 votes
1 answer
755 views

SAML based Single Sign On Authentication to Netflix

I'm trying to build a dashboard for myself that provides SAML based authentication to some Applications that I'm using. From what I have built as a testbed: I'm using One login as an Identity ...
Vivek Malik's user avatar
0 votes
1 answer
5k views

Integration of Angular website with SAML (SSO)

I have a website with frontend in AngularJS and backend in Python. Currently we are presenting the user with a simple webform to fetch credentials. The credentials from the form are sent to the ...
user2525672's user avatar
1 vote
1 answer
2k views

Google SAML Response XML

I am trying to setup Google as SP and my own database as IDP. I have configured my GSuite account with my login and logout URL and google is redirecting to them perfectly. But after SAML request from ...
Deepak Verma's user avatar
0 votes
1 answer
1k views

SSO with Django 1.9 + djangosaml2 + ADFS 2.0

I'm install and configure ADFS 2.0 as Idp and Django project as SP using djangosaml2. Django project deploing on IIS 7.5. django saml2 config: SAML_CONFIG = { # full path to the xmlsec1 binary ...
vita_l.93's user avatar
2 votes
1 answer
353 views

Namespace issue with pysaml2 XML canonicalization

I'm new to SAML and just encountered a problem when using pysaml2 to build an IdP. When creating a signed authn response, the canonicalization algorithm specified in xmldsig/init.py is exclusive ...
zlpublic's user avatar