You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -126,6 +126,33 @@ class SamlController < ApplicationController
126
126
end
127
127
end
128
128
```
129
+
## Metadata Based Configuration
130
+
131
+
The method above requires a little extra work to manually specify attributes about the IdP. (And your SP application) There's an easier method -- use a metadata exchange. Metadata is just an XML file that defines the capabilities of both the IdP and the SP application. It also contains the X.509 public
132
+
key certificates which add to the trusted relationship. The IdP administrator can also configure custom settings for an SP based on the metadata.
133
+
134
+
Using ```idp_metadata_parser.parse_remote``` IdP metadata will be added to the settings withouth further ado.
0 commit comments