我在WSO2 EI上有一个数据服务,它有一个GET资源,返回一个列表对象。
因此,在WSO2 AM上,我为该资源创建了一个API。
def convert2list(listofLists):
new_list = []
for list in listofLists:
new_list += list
return new_list
我希望响应头的内容类型为“ application / json”,但有时为“ application / octet-stream”。
result with content-type: application/json
result with content-type: application/octet-stream
我只需要application / json,请帮助我。