created query to get user watchlist from simkl

This commit is contained in:
John O'Keefe 2024-07-30 20:34:37 -04:00
parent 7044dc1d90
commit 8c61c5e96b
3 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,17 @@
meta {
name: GetUser WatchList
type: http
seq: 2
}
get {
url: https://api.simkl.com/sync/all-items/anime/watching
body: none
auth: none
}
headers {
Authorization: Bearer {{SIMKL_AUTH_TOKEN}}
Content-Type: application/json
simkl-api-key: {{SIMKL_CLIENT_ID}}
}

View File

@ -5,5 +5,6 @@ vars {
SIMKL_CLIENT_SECRET: {{process.env.SIMKL_CLIENT_SECRET}}
}
vars:secret [
code
code,
SIMKL_AUTH_TOKEN
]

View File