<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M74D8PB" height="0" width="0" style="display:none;visibility:hidden">
Loading
Skip to NavigationSkip to Main Content
0D54z00006yOJaSCAWOkta Classic EngineIntegrationsUnanswered2021-05-13T14:42:38.000Z2021-05-13T14:42:38.000Z

SharveshwaranR.77886 (Customer) asked a question.

Custom SCIM Connector: 400 Bad Request

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": [

]

}


This question is closed.
Loading
Custom SCIM Connector: 400 Bad Request