C++ standalone appliction adapter

Hello.
I’m working on a c++ standalone application developed on windows (mfc), one of the requirements
is ask for authentication and authorizations to a remote platform that use keycloak, the application is not a web
application.
Is there a way to use keycloak with this type of “client” application ? I have readed many documents and googled a lot but seems that this kind of integration can be done ony with web applications.

Thanks
Claudio Cordara

I’m not aware of an MFC/C++ lib that does Keycloak specifically, or OpenID generally. However, in the case of desktop applications that don’t/can’t embed a browser, I’ve been using “Device Authorization Grant”, documented here: Server Administration Guide

Thank you for your help. I’ll read the documentation suggested.

Regards