<div dir="ltr">Hi<div><br></div><div>I am working on keystone2keystone federatoin and using kilo version for both keystone-sp and keystone idp</div><div>After configuring keystone-sp and keystone-idp I am trying to use the command :</div><div><br></div><div>openstack federation project list -os-auth-type v3unscopedsaml --os-identity-provider k2k  --os-auth-url <a href="https://10.63.13.161:35357/v3">https://10.63.13.161:35357/v3</a> --os-identity-provider-url <a href="https://10.63.13.163:35357/v3/OS-FEDERATION/saml2/idp">https://10.63.13.163:35357/v3/OS-FEDERATION/saml2/idp</a> --os-username user --os-password password</div><div><br></div><div>It returns an error:</div><div><br></div><div>ERROR: openstack Expecting to find application/json in Content-Type header - the server could not comply with the request since it is either malformed or otherwise incorrect. The client is assumed to be in error. (HTTP 400) (Request-ID: req-4839f349-e3ed-403f-b456-dfc0d1aecbe4)<br></div><div><br></div><div>This is because in keystoneclient/contrib/auth/v3/saml2.py, while sending a request to keystone.idp for saml assertion, the content type used is text/xml</div><div><br></div><div><div>idp_response = session.post(</div><div>            self.identity_provider_url,</div><div>            headers={'Content-type': 'text/xml'},</div><div>            data=etree.tostring(idp_saml2_authn_request),</div><div>            requests_auth=(self.username, self.password),</div><div>            authenticated=False, log=False)</div></div><div><br></div><div>why is keystone.idp not accepting the content type: text/xml?</div><div>what can be the workaroung for this issue</div><div><br></div><div>Thanks</div><div><br></div></div>