我使用json输入从wso2序列调用rest服务。如果我从PostMan调用服务,服务返回正确的输出,但是当我尝试使用WSO2时,会出现以下错误。
df['mango'] = df.fruit == 'mango'
df2 = df.groupby(['customer', 'mango']).sum().unstack()
df2.columns = ['not mango', 'mango']
>>> df2
not mango mango
customer
cust1 55 75
cust2 135 23
cust3 100 22
cust4 54 44