25 lines
476 B
YAML
25 lines
476 B
YAML
|
id: api-github
|
||
|
|
||
|
info:
|
||
|
name: GitHub API Test
|
||
|
author: zzeitlin
|
||
|
reference: https://docs.github.com/en/rest/reference/users
|
||
|
severity: info
|
||
|
tags: token-spray,github
|
||
|
|
||
|
self-contained: true
|
||
|
requests:
|
||
|
- method: GET
|
||
|
path:
|
||
|
- "https://api.github.com/user"
|
||
|
headers:
|
||
|
Authorization: Basic {{base64('user:' + token)}}
|
||
|
|
||
|
matchers:
|
||
|
- type: word
|
||
|
part: body
|
||
|
words:
|
||
|
- '"login":'
|
||
|
- '"avatar_url":'
|
||
|
condition: and
|