美文网首页
openid is invalid

openid is invalid

作者: 不简单的码农 | 来源:发表于2018-11-10 15:45 被阅读0次

    做微信接口报这个错  openid is invalid  我的解决是注释$attributes里面的'openid'

    ```

    $attributes = [

        'trade_type'      => 'NATIVE', // JSAPI,NATIVE,APP...

        'body'            => '饿不饿点餐平台支付',

        'detail'          => '饿不饿点餐平台支付吖',

        'out_trade_no'    => $orderModel->order_code,//订单号

        'total_fee'        => $orderModel->total * 100,  // 单位:分

        'notify_url'      => 'http://xxx.com/order-notify', // 支付结果通知网址,如果不设置则会使用配置里的默认地址

        // 'openid'          => '当前用户的 openid', // trade_type=JSAPI,此参数必传,用户在商户appid下的唯一标识,

    ];

    ```

    相关文章

      网友评论

          本文标题:openid is invalid

          本文链接:https://www.haomeiwen.com/subject/mhwzxqtx.html