zoukankan      html  css  js  c++  java
  • 在获取微信openId时携带的参数为null

    在获取微信code 之后,我们进行 redirect  重定向  获取微信 openid

    http://projectgetOpenId?sid=1 ........

    在重定向的get  请求中携带一个自定义参数例如sid  ,在获取微信openId  接口  

    String sid = request.getParameter("sid");取出是没有问题的。
    
    但是业务需要多携带一个参数。再次加到获取微信  openId 的get 请求中
    

    http://projectgetOpenId?sid=1&type=3 ........

    在微信openId  接口  

    String sid = request.getParameter("sid");

    String type= request.getParameter("type");

    type 等于null  ,  微信不予许传入两个参数

  • 相关阅读:

    快排
    排序算法
    运算符
    二叉树
    递归
    队列
    栈(没写完)
    绘制双坐标轴的图形3-不同的plot类型
    绘制双坐标轴的图形2-不同的plot类型
  • 原文地址:https://www.cnblogs.com/blogspring/p/14191775.html
Copyright © 2011-2022 走看看