![]() |
Admin 10/20/2021 |
PHPRunner doesn't support application/json-patch+json content type, but it shouldn't be a problem for you. To make the generated application support application/json-patch+json type do the following. if( $type == "application/json" ) { and replace it with if( $type == "application/json" || $type == "application/json-patch+json" ) { You can apply the same changes to the file in <PHPRunner installation directory>\source to make them permanent. |