我有一个问题
我连接了 SP 和 IDP,一切都很好,除了一件事:SP 向 iDp 发送 GET 请求。以及使用 POST 协议发送的 iDp 需求数据。
这是SP
'spname' => array(
'saml:SP',
'ProtocolBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST',
'idp' => 'https://someurl.com/SomeSSO.aspx',
'acs.Bindings' => array(
'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST',
'urn:oasis:names:tc:SAML:1.0:profiles:browser-post',
),
'discoURL' => NULL,
'privatekey' => 'some.pem',
'certificate' => 'some.crt'
),
这是 iDp 遥控器:
$metadata['https://something.com/SomeSSO.aspx'] = array(
'name' => array(
'en' => 'Something',
'no' => 'Something',
),
'description' => 'Something',
'SingleSignOnService' => 'https://xxxxxx.com/SomeSSO.aspx?ou_id=-850',
'SingleLogoutService' => 'https://xxxxxx.com/SomeSSO.aspx?ou_id=-850',
'certFingerprint' => xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
);
有人能帮我吗?