asp.net 后台接口如何接受 小程序post方式提交的数据
小程序POST提交的数据,经UTF-8编码;和普通web程序POST数据一致。
但小程序要求接口地址必须https的,必须经SSL加密协议,不能使用http的。
后台接口使用asp.net程序,可如下接收数据:
StreamReader reader = new StreamReader(context.Request.InputStream, Encoding.UTF8);
string strval = reader.ReadToEnd();
如果使用JSON数据,可再解析为JSON格式。