blob: 9d0ff626a65c96d9ee9e49f1c8302aaa1f9a6de2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?xml version="1.0" encoding="UTF-8"?>
<md:EntityDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
entityID="http://60.101.108.100">
<md:SPSSODescriptor
protocolSupportEnumeration="urn:oasis:names:tc:SAML:2.0:protocol"
AuthnRequestsSigned="false"
WantAssertionsSigned="false">
<!-- HTTP-POST 및 HTTP-Redirect 바인딩 둘 다 지원 -->
<md:AssertionConsumerService
Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST"
Location="http://60.101.108.100/api/saml/callback"
index="0"
isDefault="true"/>
<md:AssertionConsumerService
Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect"
Location="http://60.101.108.100/api/saml/callback"
index="1"/>
</md:SPSSODescriptor>
</md:EntityDescriptor>
|