
SharveshwaranR.77886 (Customer) asked a question.
I'm trying to build a custom on-prem SCIM connector with Python and flask, when I click the test configuration I get
The Provisioning Agent call to getConnectorConfig failed. Error code: 400, error: BAD REQUEST. Errors reported by the connector : <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <title>400 Bad Request</title> <h1>Bad Request</h1> <p>The browser (or proxy) sent a request that this server could not understand.</p>
This is the schema I'm sending back to Okta,
{
'schemas': [
"urn:scim:schemas:core:1.0",
"urn:okta:schemas:scim:providerconfig:1.0"
],
"documentationUrl": "https://support.okta.com/scim-fake-page.html",
"patch": {
"supported": False
},
"bulk": {
"supported": False
},
"filter": {
"supported": True,
"maxResults":100
},
"changePassword": {
"supported": True
},
"sort": {
"supported": False
},
"etag": {
"supported": False
},
"authenticationSchemes": [
]
}
