You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
513 B
18 lines
513 B
package indieauth |
|
|
|
import "net/url" |
|
|
|
// Request represents a single in-flight IndieAuth request. |
|
type Request struct { |
|
UserID string |
|
DisplayName string |
|
CurrentAccessToken string |
|
Endpoint *url.URL |
|
Redirect *url.URL // Outbound redirect URL to continue auth flow |
|
Callback *url.URL // Inbound URL to get auth flow results |
|
ClientID string |
|
CodeVerifier string |
|
CodeChallenge string |
|
State string |
|
Me *url.URL |
|
}
|
|
|