我正在编写一个PHP脚本,该脚本请求其他DF服务(即FileStorage)。 当我请求包含文件的文件夹时,响应是正确的,但是当 我想直接请求文件(json或xml),但出现错误:
DF日志:
local.ERROR: Type error: Argument 1 passed to DreamFactory\Core\Utility\ResponseFactory::sendScriptResponse() must implement interface DreamFactory\Core\Contracts\ServiceResponseInterface, instance of Symfony\Component\HttpFoundation\StreamedResponse given, called in D:\socle_64\dreamfactory-2.12.0\apps\dreamfactory\htdocs\vendor\dreamfactory\df-script\src\Components\BaseEngineAdapter.php
PHP脚本如下:
$platform['api']->get->__invoke('service/file');
当我仅传递包含文件的文件夹路径时,它运行良好。 通过邮递员或在我的DF服务外部进行的相同请求效果很好。
谢谢
PS:对不起,我的英语。
答案 0 :(得分:0)
好了,我找到了问题的解决方案:
$result = $platform['api']->get->__invoke('service/file.txt?include_properties=true&content=true');
=>返回以base64编码的文件内容
$file = base64_decode($response['content'], true);