Documentation
¶
Overview ¶
Package odrvcookie can fetch authentication cookies for a sharepoint webdav endpoint
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CookieAuth ¶
type CookieAuth struct {
// contains filtered or unexported fields
}
CookieAuth hold the authentication information These are username and password as well as the authentication endpoint
func (*CookieAuth) Cookies ¶
func (ca *CookieAuth) Cookies() (CookieResponse, error)
Cookies creates a CookieResponse. It fetches the auth token and then retrieves the Cookies
type CookieResponse ¶
CookieResponse contains the requested cookies
type SuccessResponse ¶
type SuccessResponse struct {
XMLName xml.Name `xml:"Envelope"`
Succ SuccessResponseBody `xml:"Body"`
}
SuccessResponse hold a response from the sharepoint webdav
type SuccessResponseBody ¶
type SuccessResponseBody struct {
XMLName xml.Name
Type string `xml:"RequestSecurityTokenResponse>TokenType"`
Created time.Time `xml:"RequestSecurityTokenResponse>Lifetime>Created"`
Expires time.Time `xml:"RequestSecurityTokenResponse>Lifetime>Expires"`
Token string `xml:"RequestSecurityTokenResponse>RequestedSecurityToken>BinarySecurityToken"`
}
SuccessResponseBody is the body of a success response, it holds the token
Click to show internal directories.
Click to hide internal directories.