如何在飞行API中以可读格式获取XML响应

时间:2015-11-06 08:45:42

标签: php api curl response

我正在使用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];
}

0 个答案:

没有答案