Migrated from Redmine #1204 | Author: Günther Lagler Status: Feedback | Priority: Normal | Created: 2024-03-21
Hello,
any Idea, why I always get “Access denied” when trying to get the token? (login and API-Key is checked 100 times)
This is what I send: {“jsonrpc”:“2.0”,“method”:“getToken”,“params”:[“aderlasskalender”,“xxx”],“id”:1}
and what I get: {“error”:{“code”:-32600,“message”:“Access denied”,“data”:},“id”:“1”,“jsonrpc”:“2.0”}
url is https://user-api.simplybook.it/ (I tried all I could find in docu)
RequestMethod POST
Content-Type: application/json
charset: UTF-8
Rest from the java-src:
conn.setDoInput(true);
conn.setInstanceFollowRedirects(false);
conn.setUseCaches(false);
conn.setReadTimeout(60000);
conn.setConnectTimeout(30000);