Hi, I have configured JWT so I can authenticate us...
# ktor
a
Hi, I have configured JWT so I can authenticate users and that works fine. Beside that, I want API consumers to send the each request with their unique client id, with this header "Client-ID": "someuniqueid". So basically, every call should be made with the "Client-ID" header and if it is valid, then I do the optional JWT authentication, so I can send different response to public/logged in users. How should I approach this problem?