Christoph Kappestein

Results 231 comments of Christoph Kappestein

Hi, yes , you can set the expiry limit for the tokens at the `configuration.php` file i.e.: ``` 'fusio_expire_app' => 'P2D', // your API 'fusio_expire_backend' => 'PT1H', // backend app...

Hi, so the consumer token does expire after 1 hour. Then the user needs to login again since the token becomes invalid. But you can change this as shown in...

Yes, the solution of @kidino is basically the only solution since Fusio does not support tokens without expiration. From a security perspective it is also not recommended to create a...

Hi, so the for this we have the `php bin/fusio deploy` command which you can run after you have updated all your classes in the `src/` folder. It then creates...

Hi, yes so this behaviour is intended since normally you dont want properties in your response where the value is null. Do you have a specific case where you need...

Hi, thanks for the feedback, so regarding your question in general it should be possible to simply enter html at the config, since we send the body as HTML s....

Ok, so regarding the error message, this indicates that the JSON your are sending to your endpoint is not valid JSON, you should also set a correct `Content-Type` to `application/json`....

@SavvyEngineer ok so your workaround should work but maybe we should also add this as a native feature to Fusio. I will keep this issue open so that we can...

Hi, so currently you can get the `uriFragments` which are the variable parts of a route via `request.http.uriFragments` and you can also get the `baseUrl` via `context.baseUrl` but we have...

Hey, so in general you could use the same action on different routes but this depends a little bit on how the action works. Otherwise we have currently no direct...