import "github.com/markbates/goth/providers/wepay"
Package wepay implements the OAuth2 protocol for authenticating users through wepay. This package can be used as a reference implementation of an OAuth2 provider for Goth.
type Provider struct { ClientKey string Secret string CallbackURL string HTTPClient *http.Client // contains filtered or unexported fields }
Provider is the implementation of `goth.Provider` for accessing Wepay.
New creates a new Wepay provider and sets up important connection details. You should always call `wepay.New` to get a new provider. Never try to create one manually.
BeginAuth asks Wepay for an authentication end-point.
Debug is a no-op for the wepay package.
FetchUser will go to Wepay and access basic information about the user.
Name is the name used to retrieve this provider later.
RefreshToken get new access token based on the refresh token
RefreshTokenAvailable refresh token is provided by auth provider or not
SetName is to update the name of the provider (needed in case of multiple providers of 1 type)
UnmarshalSession wil unmarshal a JSON string into a session.
Session stores data during the auth process with Wepay.
Authorize the session with Wepay and return the access token to be stored for future use.
GetAuthURL will return the URL set by calling the `BeginAuth` function on the Wepay provider.
Marshal the session into a string
Package wepay imports 10 packages (graph) and is imported by 17 packages. Updated 2018-01-19. Refresh now. Tools for package owners.