Skip to content

Commit b8a17ff

Browse files
committed
Added API_PATH_SSO to allow sso api calls
1 parent c073d2f commit b8a17ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ox3apiclient/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
AUTHORIZATION_URL = 'https://sso.openx.com/login/process'
4141
API_PATH_V1 = '/ox/3.0'
4242
API_PATH_V2 = '/ox/4.0'
43-
ACCEPTABLE_PATHS = (API_PATH_V1, API_PATH_V2)
43+
API_PATH_SSO = '/api'
44+
ACCEPTABLE_PATHS = (API_PATH_V1, API_PATH_V2, API_PATH_SSO)
4445
JSON_PATHS = (API_PATH_V2,)
4546
HTTP_METHOD_OVERRIDES = ['DELETE', 'PUT', 'OPTIONS']
4647

0 commit comments

Comments
 (0)