volcengine / volc-sdk-php

Apache License 2.0
15 stars 7 forks source link

ImageOutpaint报Parse Request Parameters Error #12

Open yoke1990 opened 1 year ago

yoke1990 commented 1 year ago

报错信息: { "code": 400, "data": { "code": 50204, "data": null, "message": "Parse Request Parameters Error", "request_id": "202307101705470DEE307B7865AF28F183", "status": 50204, "time_elapsed": "6.005664ms" }, "msg": "Parse Request Parameters Error" }

检查多次,调整多种方式,依然这个报错。Volc\Base\V4Curl 请求的方法,我们也认真看了,实在没发现哪里参数错了,图像增强和人脸融合我们已经成功接入,就这个死活接不进去

请求参数:

定义了: 'ImageOutpaint' => [ 'url' => '/', 'method' => 'post', 'config' => [ 'query' => [ 'Action' => 'ImageOutpaint', 'Version' => '2020-08-26', ], ], ],

BODY: $body['image_base64'] = [base64_encode(file_get_contents($file))]; $body['x_pref']= 'both'; $body['y_pref']= 'both'; $body['ratio']= 1; //1.00 "1.00"都尝试过 $response = $client->ImageOutpaint(['​form_params​' =>$body]);

Header: Content-Type : application/x-www-form-urlencoded