Chaves públicas (JWKS)
curl --request GET \
--url https://api.notifique.dev/.well-known/jwks.jsonconst options = {method: 'GET'};
fetch('https://api.notifique.dev/.well-known/jwks.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/.well-known/jwks.json"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/.well-known/jwks.json"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"keys": [
{
"kty": "OKP",
"crv": "Ed25519",
"kid": "ntf-oauth-2026",
"use": "sig",
"alg": "EdDSA"
}
]
}Metadados
Chaves públicas (JWKS)
Chaves EdDSA para validar access tokens JWT localmente.
GET
/
.well-known
/
jwks.json
Chaves públicas (JWKS)
curl --request GET \
--url https://api.notifique.dev/.well-known/jwks.jsonconst options = {method: 'GET'};
fetch('https://api.notifique.dev/.well-known/jwks.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/.well-known/jwks.json"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/.well-known/jwks.json"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"keys": [
{
"kty": "OKP",
"crv": "Ed25519",
"kid": "ntf-oauth-2026",
"use": "sig",
"alg": "EdDSA"
}
]
}Resposta
200 - application/json
JSON Web Key Set.
Show child attributes
Show child attributes
Esta página foi útil?

