import "github.com/markbates/goth/providers/azuread"
Package azuread implements the OAuth2 protocol for authenticating users through AzureAD. This package can be used as a reference implementation of an OAuth2 provider for Goth. To use microsoft personal account use microsoftonline provider
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 AzureAD.
New creates a new AzureAD provider, and sets up important connection details. You should always call `AzureAD.New` to get a new Provider. Never try to create one manually.
BeginAuth asks Onedrive for an authentication end-point.
Client is HTTP client to be used in all fetch operations.
Debug is a no-op for the facebook package.
FetchUser will go to AzureAD 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 is the implementation of `goth.Session` for accessing AzureAD.
Authorize the session with Facebook and return the access token to be stored for future use.
GetAuthURL will return the URL set by calling the `BeginAuth` function on the Facebook provider.
Marshal the session into a string
Package azuread imports 10 packages (graph) and is imported by 3 packages. Updated 2018-02-02. Refresh now. Tools for package owners.