收藏
回答

微信小程序支付完成,回调方法中参数为空?

支付单号:4200002525202411253451761069

System.IO.Stream s = HttpContext.Current.Request.InputStream;
int count = 0;
byte[] buffer = new byte[1024];
StringBuilder builder = new StringBuilder();
while ((count = s.Read(buffer, 0, 1024)) > 0)
{
    builder.Append(Encoding.UTF8.GetString(buffer, 0, count));
}
s.Flush();
s.Close();
s.Dispose();
var str = builder.ToString();

str为空

回答关注问题邀请回答
收藏

1 个回答

  • 支付社区运营
    支付社区运营
    2024-11-27

    还请提供一下接口文档

    2024-11-27
    有用
    回复
登录 后发表内容