X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osmclient%2Fsol005%2Fclient.py;h=b8627b94bf315e819944a632178ddc73bb33d8b5;hb=f157128052e59df5c37489926f7d5755714c3cbf;hp=d1c90aabb4e6ee98aa140775553134a8b4df885d;hpb=891e201c4ac9dd5a98ab208027d1ddd75b6aed3b;p=osm%2Fosmclient.git diff --git a/osmclient/sol005/client.py b/osmclient/sol005/client.py index d1c90aa..b8627b9 100644 --- a/osmclient/sol005/client.py +++ b/osmclient/sol005/client.py @@ -28,6 +28,7 @@ from osmclient.sol005 import package from osmclient.sol005 import http from osmclient.sol005 import sdncontroller from osmclient.common.exceptions import ClientException +import json class Client(object): @@ -94,8 +95,11 @@ class Client(object): postfields_dict = {'username': self._user, 'password': self._password, 'project-id': self._project} - token = self._http_client.post_cmd(endpoint=self._auth_endpoint, + http_code, resp = self._http_client.post_cmd(endpoint=self._auth_endpoint, postfields_dict=postfields_dict) + if http_code not in (200, 201, 202, 204): + raise ClientException(resp) + token = json.loads(resp) if resp else None if token is not None: return token['_id'] return None