(u string)
| 174 | } |
| 175 | |
| 176 | func isNonRootHTTPSURL(u string) bool { |
| 177 | pu, err := url.Parse(u) |
| 178 | if err != nil { |
| 179 | return false |
| 180 | } |
| 181 | return pu.Scheme == "https" && pu.Path != "" |
| 182 | } |
| 183 | |
| 184 | // inferApplicationType returns an application type based on the redirect URIs. |
| 185 | func inferApplicationType(redirectURIs []string) string { |
no outgoing calls
no test coverage detected
searching dependent graphs…