gpt4 book ai didi

php - SwaggerUI 传递参数

转载 作者:可可西里 更新时间:2023-11-01 12:36:46 25 4
gpt4 key购买 nike

我有一个 swagger.json 定义如下:

"/API/GetTieredInventory": {
"post": {
"summary": "Get Tiered inventory from ID",
"description": "Gets Tiered inventory for passed ID/IC combination",
"produces": [
"application/json"
],
"parameters": [
{
"name": "id",
"in": "path",
"description": "ID to retrieve Tiered inventory for",
"required": true,
"type": "string"
},
{
"name": "ic",
"in": "path",
"description": "IC to retrieve Tiered inventory for",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "successful operation"
},
"500": {
"description": "Internal error"
}
}
}
}
},

现在,我的 API 采用如下参数:

private function GetTieredInventory() {
if($this->get_request_method() != "POST"){
$this->response('Error code 405, Method not allowed.',405);
}
if(is_array($this->_request['ic'])) {
$v = array();
foreach($this->_request['ic'] as $i) {
$v[] = "'".$i."'";
}
$ic=html_entity_decode(implode(',', $v ));
} else {
$ic = "'".$this->_request['ic']."'";
}
$id=pg_escape_string($this->_request['id']);

<SNIP DB CODE>

try
{
$results = pg_query($sql);
if(pg_num_rows($results) == 0) {
$rows = [];
}
else
{
$data = pg_fetch_all($results);
foreach($data as $item)
{
$rows[$item["ic"]][] = $item;
}
}
pg_free_result($results);
}
catch (Exception $e)
{
$err = array("message"=>$e->getMessage(), "code"=> $e->getCode(), "error"=>$e->__toString().",\n".print_r($_REQUEST, true));
$this->response($this->toJSON($err),500);
}
echo json_encode($rows);
}

无论 in 值是多少,我仍然得到一个
注意:未定义索引:ic注意:未定义索引:id 错误返回。

我已经为这两个参数尝试了所有这三个:

"in": "path",
"in": "query",
"in": "body",

这是在我的服务中调用 api 的方式:

$fields = array(
'id' => $this->compId,
'ic' => $ic
);
$fields_string = http_build_query($fields);

$url = "/API/GetTieredInventory";
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_POST, count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);

像这样更改参数定义,因为 ic 可以是值数组:

"parameters": [
{
"name": "id",
"in": "body",
"description": "ID to retrieve Tiered inventory for",
"required": true,
"type": "string"
},
{
"name": "ic",
"in": "body",
"schema": {
"type": "array",
"items": {
"type": "string",
"style": "form"
}
},
"description": "Interchange to retrieve Tiered inventory for",
"required": true
}
],

但还是一样的错误...:-(

最佳答案

将参数更改为此使其工作。我正在使用 OAS 2.0

"parameters": [
{
"name": "id",
"in": "formData",
"description": "ID to retrieve Tiered inventory for",
"required": true,
"type": "string"
},
{
"name": "ic",
"in": "formData",
"description": "IC to retrieve Tiered inventory for",
"required": true,
"type": "string"
}
],

关于php - SwaggerUI 传递参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50681892/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com