I am trying to create an app key via the visualiser to use the new API, but I can't get it working. Below is my console log when calling createDeveloperAppKeys and getDeveloperAppKeys from the visualiser.
Calling createDeveloperAppKeys gives:
Calling getDeveloperAppKeys gives:
createDeveloperAppKeys obviously fails but there is no message to indicate why. I am using a valid session id (tried both the autofill in Chrome, and the session id returned from certLogin).
What could be causing this?
Calling createDeveloperAppKeys gives:
Code:
Request AppKey:
Request data:
[{"jsonrpc": "2.0", "method": "AccountAPING/v1.0/createDeveloperAppKeys", "params": {"appName":"test"}, "id": 1}]
Response truncated to 4,000 chars:
[{"jsonrpc":"2.0","error":{"code":-32099,"message":"AANGX-0008","data":{"AccountAPINGException":{"errorDetails":"","errorCode":"APP_KEY_CREATION_FAILED","requestUUID”:”<removed>”},”exceptionname":"AccountAPINGException"}},"id":1}]
Code:
Request AppKey:
Request data:
[{"jsonrpc": "2.0", "method": "AccountAPING/v1.0/getDeveloperAppKeys", "params": {}, "id": 1}]
Response truncated to 4,000 chars:
[{"jsonrpc":"2.0","result":[],"id":1}]
What could be causing this?


Comment