Exception occurred while processing request com.mendix.core.CoreRuntimeException: Missing Oauth configuration, please contact the application administrator
Not sure what's the issue here...but its failing at a point in code where its trying to add something into IContext object (oauthconfig class)
private OAuthConfig getConfig(IContext context){
try {
OAuthConfig configuration = XPath.create(context, OAuthConfig.class).first();
if (configuration == null) {
throw new CoreRuntimeException(
"Missing Oauth configuration, please contact the application administrator");
}
return configuration;
} catch (CoreException e) {
Core.getLogger("OauthCallback").error("Something went wrong while retrieving the Oauth configuration. \n"+ e);
}
return null;
}