Hi People,
I want to Integrate Google login SSO but using SAML?
Does anyone know where can i find proper documentation for the same.
Loading
Hi People,
I want to Integrate Google login SSO but using SAML?
Does anyone know where can i find proper documentation for the same.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Yash VishwakarmaPosted Apr 9, 2022, 8:23 AM
Hey people,
I am trying to integrate the SAML SSO with my website,
when I send SAML request to my IDP using code below
refer this code
AccountSettings ac = new AccountSettings();
Models.GoogleSamlData.saml.AuthRequest req = new Models.GoogleSamlData.saml.AuthRequest(new AppSetting(), ac);
String url = (ac.idp_sso_target_url + "?SAMLRequest=" +
Server.UrlEncode(req.GetRequest(Models.GoogleSamlData.saml.AuthRequest.AuthRequestFormat.Base64)));
return RedirectPermanent(url);
I Get an error saying
Invalid Request, invalid idpId in request URL, check if SSO URL is configured properly on SP side
but I am sure that idp id is correct,
think the problem is with the format or something else that I cant figure out
Muhammad Imran AnsariPosted Apr 9, 2022, 5:55 AM
Md SarfarajPosted Apr 9, 2022, 4:59 AM