mirror of
https://github.com/foss42/apidash.git
synced 2025-12-04 03:46:57 +08:00
fix: auth header generation
This commit is contained in:
@@ -52,6 +52,14 @@ enum OAuth2GrantType {
|
||||
final String displayType;
|
||||
}
|
||||
|
||||
enum OAuth1SignatureMethod {
|
||||
hmacSha1("HMAC-SHA1"),
|
||||
plaintext("Plaintext");
|
||||
|
||||
const OAuth1SignatureMethod(this.displayType);
|
||||
final String displayType;
|
||||
}
|
||||
|
||||
enum HTTPVerb {
|
||||
get("GET"),
|
||||
head("HEAD"),
|
||||
|
||||
Reference in New Issue
Block a user