我正在使用travelport flight API。当我通过curl发送请求以不可读的格式获取响应时。如何获得可读的航班API响应?
RESPONSE
string[] tempQuery = query.Split(',');
for (int i = 0; i < tempQuery.Length; i++)
{
if (tempQuery[i].Contains("@GroupIds"))
myQuery = myQuery + ",@GroupIds = '" + ddlTeams.SelectedValue + "'";
else
myQuery = myQuery + "," + tempQuery[i];
}