Re:Re: Re:Re: How to get REST API parameters

2020-05-28 Thread 孙连山
Thanks your answer. -- 谢谢, 孙连山 在 2020-05-28 17:06:36,"Sheng Wu" 写道: >We don't read header in any case, you have to change the codes. >For the body, if it is post parameter(key=value format), we should be able >to read it. If it is a private format, such as JSON, XML, we

Re: Re:Re: How to get REST API parameters

2020-05-28 Thread Sheng Wu
We don't read header in any case, you have to change the codes. For the body, if it is post parameter(key=value format), we should be able to read it. If it is a private format, such as JSON, XML, we wouldn't be able to read it. Sheng Wu 吴晟 Twitter, wusheng1108 孙连山 于2020年5月28日周四 上午9:47写道: > >

Re:Re: How to get REST API parameters

2020-05-25 Thread 孙连山
Hi, sorry to bother you again. I did some tests and found that if I put a parameter in url like 'http://website/orders?orderid=', I can get the value of 'orderid', but if I put data in request header or body , I get nothing. Is it my wrong setting ? -- 谢谢, 孙连山 在