我收到的此Http get request = xyz / api / v2 / comments
响应:
{
"list": [
{
"comment": {
"id": "12",
"entity_id": "user1",
"notes": "Test note 101111",
}
},
{
"comment": {
"id": "13",
"entity_id": "user2",
"notes": "Test note ok",
}
}
]
}
我想以仅返回user1注释的方式创建http请求,为此,我正在尝试像这样过滤它= xyz / api / v2 / comments?entity_id [is] = user1 ,但是我仍然获得与两个用户相同的json。如何编辑我的http请求以实现这一目标?
谢谢。