Open mbcsa opened 2 years ago
Function getPropertyValueByKey returns String values, but some configurations are evaluated as booleans
In the first case result is false and makes http requests to be sent as HTTP instead of HTTPS.
When respectively changed to
getPropertyValueByKey("OAUTH_WITH_SSL").equals("true")
getPropertyValueByKey("OAUTH_ACCEPT_UNSECURE_SERVER").equals("true")
works as expected.
Function getPropertyValueByKey returns String values, but some configurations are evaluated as booleans
In the first case result is false and makes http requests to be sent as HTTP instead of HTTPS.
When respectively changed to
getPropertyValueByKey("OAUTH_WITH_SSL").equals("true")
getPropertyValueByKey("OAUTH_ACCEPT_UNSECURE_SERVER").equals("true")
works as expected.