Keine Zugriffrechte auf LivingApp (no-app-permission)
Der bei der HTTP-Abfrage übergebene Benutzer hat nicht die nötigen Zugriffrechte auf der spezifizierten LivingApp.
Beispiel:
>>> import pprint, requests
>>> api_key = "6809fb00tDfPWbTVNvyeGxFQSFvNYSPTwZybcEQTBsSeMLwVeYZauwSKrEuuvxjqcdqygkoPoQJTJClxdUnSPhenetVXBzJeWI"
>>> response = requests.get(
... "https://my.living-apps.de/rest/apps/680a201a8f45887b855d1b99",
... headers={
... "Accept": "application/json",
... "X-API-KEY": api_key,
... },
... )
>>> pprint.pprint(response.json())
{'app_id': '680a201a8f45887b855d1b99',
'detail': "You don't have permission to access the LivingApp "
'`680a201a8f45887b855d1b99`.',
'status': 403,
'title': 'LivingApp not accessible',
'type': 'https://my.living-apps.de/docs/REST-Service_error_no_app_permission.html'}