SSOURL returns the URL of a SAML SSO challenge received by the server for clients that use ExtractHeader to extract the value of the "X-GitHub-SSO" response header.
()
| 292 | // SSOURL returns the URL of a SAML SSO challenge received by the server for clients that use ExtractHeader |
| 293 | // to extract the value of the "X-GitHub-SSO" response header. |
| 294 | func SSOURL() string { |
| 295 | if ssoHeader == "" { |
| 296 | return "" |
| 297 | } |
| 298 | m := ssoURLRE.FindStringSubmatch(ssoHeader) |
| 299 | if m == nil { |
| 300 | return "" |
| 301 | } |
| 302 | return m[1] |
| 303 | } |
no outgoing calls