Fixes wso2/product-iots/#1338

revert-dabc3590
Sameera Wickramasekara 7 years ago
parent c7d5043248
commit 3fff6ecccd

@ -48,6 +48,6 @@ class RefreshToken():
params = urllib.urlencode({"grant_type": "refresh_token", "refresh_token": refreshToken, params = urllib.urlencode({"grant_type": "refresh_token", "refresh_token": refreshToken,
"scope": "Enroll device"}) "scope": "Enroll device"})
data = self.post("/token", params, applicationKey) data = self.post("/token", params, applicationKey)
response = json.loads(data) response = json.loads(data.content)
self.updateFile(response) self.updateFile(response)
return response return response
Loading…
Cancel
Save