We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47e0d1f commit 9a4c75aCopy full SHA for 9a4c75a
1 file changed
ox3apiclient.py
@@ -10,7 +10,7 @@
10
REQUEST_TOKEN_URL = 'https://sso.openx.com/api/index/initiate'
11
ACCESS_TOKEN_URL = 'https://sso.openx.com/api/index/token'
12
AUTHORIZATION_URL = 'https://sso.openx.com/login/process'
13
-API_PATH = '/ox/3.0/a'
+API_PATH = '/ox/3.0'
14
HTTP_METHOD_OVERRIDES = ['DELETE', 'PUT']
15
16
class OX3APIClient(object):
@@ -168,7 +168,7 @@ def validate_session(self):
168
169
self._cookie_jar.set_cookie(cookie)
170
171
- url = 'http://'+self.domain+API_PATH+'/session/validate'
+ url = 'http://'+self.domain+API_PATH+'/a/session/validate'
172
res = self.request(url=url, method='PUT')
173
return res.read()
174
0 commit comments