Hi!
I am trying to get OAuth2 to work within my existing application.
This application is currently using the
Esri::ArcGISRuntime::ArcGISRuntimeEnvironment::setApiKey("***")method to set the API key, but we want to change this to OAuth.,
I have been looking at all the examples but it doesn't seem very useful for my implementation.
I figured out what url to call and I am able to go through the login from within my QT Desktop application.
I figured out I can change the "redirect-url" to "my-application://oauth" which will automatically open/re-activate my application after login.
Where I am stuck is that (atleast under OSX) I can not intercept that call in QT (when my application is already open)
Calling the following url, anyone knows what "response_type"s are available, perhaps that could help me out.
Does anyone know how to intercept the redirect from the QWebview or how to filter the specific event under OSX (and Windows/Linux) and what should I do with the token?
A link to some actual documentation instead of QML examples would be great too!!