xoauth

package
v0.83.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 22, 2026 License: BSD-3-Clause Imports: 17 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AuthStyle

type AuthStyle int
const (
	AuthStyleUnknown AuthStyle = iota
	AuthStyleInParams
	AuthStyleInHeader
)

type Config

type Config struct {
	ClientID     string
	ClientSecret string
	TokenURL     string
	Scopes       []string
	AuthStyle    AuthStyle
}

type Token

type Token struct {
	AccessToken string
	TokenType   string
	Expiry      time.Time
	Scope       string
}

type TokenSource

type TokenSource interface {
	Token(ctx context.Context) *Token // read-only
	Stop()
}

func NewReuseTokenSource

func NewReuseTokenSource(ctx context.Context, cfg *Config) (TokenSource, error)

func NewStaticTokenSource

func NewStaticTokenSource(t *Token) TokenSource

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL