Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Request ¶
type Request struct { CurrentPwd string `json:"currentPassword"` NewPwd string `json:"newPassword"` }
Request :
Request struct to build the required post parameters.
Fields:
CurrentPwd: the user's current password. NewPwd: the password the user wishes to change their password to.
func (*Request) ChangePassword ¶
func (r *Request) ChangePassword(c *sa.Client, userID string, currentPwd string, newPwd string) (*Response, error)
ChangePassword :
Helper function for making Change Password posts to the users endpoint
Parameters:
[Required] r: should have all required fields of the struct populated before using. [Required] c: passing in the client containing authorization and host information. [Required] userID: the username of the user to perform the post for. [Required] currentPwd: users current password. [Required] newPwd: the password to change the users password to.
Returns:
Response: Struct marshaled from the Json response from the API endpoints. Error: If an error is encountered, response will be nil and the error must be handled.
func (*Request) Post ¶
Post :
Executes a post to the users endpoint.
Parameters:
[Required] r: should have all required fields of the struct populated before using. [Required] c: passing in the client containing authorization and host information. [Required] userID: the username of the user to perform the post for.
Returns:
Response: Struct marshaled from the Json response from the API endpoints. Error: If an error is encountered, response will be nil and the error must be handled.
type Response ¶
type Response struct { Status string `json:"status"` Message string `json:"message"` RawJSON string `json:"-"` HTTPResponse *http.Response `json:"-"` }
Response :
Response struct that will be populated after the post request.
func (*Response) IsSignatureValid ¶ added in v1.1.0
IsSignatureValid :
Helper function to validate the SecureAuth Response signature in X-SA-SIGNATURE
Parameters:
[Required] r: response struct with HTTPResponse [Required] c: passing in the client with application id and key
Returns:
bool: if true, computed signature matches X-SA-SIGNATURE. if false, computed signature does not match. error: If an error is encountered, bool will be false and the error must be handled.
Click to show internal directories.
Click to hide internal directories.