mirror of
https://github.com/kristoferssolo/tree-sitter-bruno.git
synced 2025-10-21 20:10:34 +00:00
58 lines
750 B
Plaintext
58 lines
750 B
Plaintext
===========
|
|
Auth Oauth2
|
|
===========
|
|
|
|
auth:oauth2 {
|
|
grant_type: authorization_code
|
|
scope: read write
|
|
}
|
|
|
|
---
|
|
|
|
(source_file
|
|
(auths
|
|
(authoauth2
|
|
(keyword)
|
|
(dictionary
|
|
(dictionary_pair
|
|
(key)
|
|
(value)
|
|
)
|
|
(dictionary_pair
|
|
(key)
|
|
(value)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
|
|
===========================================
|
|
Auth Basic with empty username and password
|
|
===========================================
|
|
|
|
auth:basic {
|
|
username:
|
|
password:
|
|
}
|
|
|
|
---
|
|
|
|
(source_file
|
|
(auths
|
|
(authbasic
|
|
(keyword)
|
|
(dictionary
|
|
(dictionary_pair
|
|
(key)
|
|
(value)
|
|
)
|
|
(dictionary_pair
|
|
(key)
|
|
(value)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|