做微信接口报这个错 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下的唯一标识,
];
```
网友评论