24 lines
		
	
	
		
			534 B
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			534 B
		
	
	
	
		
			Go
		
	
	
	
package providers
 | 
						|
 | 
						|
import (
 | 
						|
	"net/url"
 | 
						|
)
 | 
						|
 | 
						|
// ProviderData contains information required to configure all implementations
 | 
						|
// of OAuth2 providers
 | 
						|
type ProviderData struct {
 | 
						|
	ProviderName      string
 | 
						|
	ClientID          string
 | 
						|
	ClientSecret      string
 | 
						|
	LoginURL          *url.URL
 | 
						|
	RedeemURL         *url.URL
 | 
						|
	ProfileURL        *url.URL
 | 
						|
	ProtectedResource *url.URL
 | 
						|
	ValidateURL       *url.URL
 | 
						|
	Scope             string
 | 
						|
	ApprovalPrompt    string
 | 
						|
}
 | 
						|
 | 
						|
// Data returns the ProviderData
 | 
						|
func (p *ProviderData) Data() *ProviderData { return p }
 |