Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cas_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (ts *TestServer) ServeHTTP(w http.ResponseWriter, r *http.Request) {
}

return
case "/serviceValidate":
case "/proxyValidate":
ticket := query.Get("ticket")
service := query.Get("service")

Expand Down
4 changes: 2 additions & 2 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ func (c *Client) LogoutUrlForRequest(r *http.Request) (string, error) {
return u.String(), nil
}

// ServiceValidateUrlForRequest determines the CAS serviceValidate URL for the ticket and http.Request.
// ServiceValidateUrlForRequest determines the CAS proxyValidate URL for the ticket and http.Request.
func (c *Client) ServiceValidateUrlForRequest(ticket string, r *http.Request) (string, error) {
u, err := c.url.Parse(path.Join(c.url.Path, "serviceValidate"))
u, err := c.url.Parse(path.Join(c.url.Path, "proxyValidate"))
if err != nil {
return "", err
}
Expand Down