公众号登录报错问题处理

1、文件目录:crmeb/services/wechat/OfficialAccount.php

第 88 行注释的放开

2、修改crmeb/services/wechat/OfficialAccount.php文件582行

tokenFromCode方法的返回值为

return $response->getTokenResponse();

3、文件目录:crmeb/services/wechat/CustomHttpClient.php

方法名:request

70 行左右

替换此方法

public function request(string $method, string $url, array $options = []): ResponseInterface
    {
        // 合并传入的选项和默认选项
        $options = array_merge(self::OPTIONS_DEFAULTS, $this->httpConfig, $options);

        $ssl = strstr($this->baseUrl, 'https://') !== false;
        $baseUrl = str_replace(['https://', 'http://', '/'], '', $this->baseUrl);

        // 使用 Swoole Client 完成请求
        $client = new Client($baseUrl, $ssl ? 443 : 80, $ssl);

        $client->set([
            'timeout' => !empty($options['timeout']) ? $options['timeout'] : $this->timeout,
            'ssl_cert_file' => $options['cert'] ?? null,
            'ssl_key_file' => $options['ssl_key'] ?? null
        ]);

        $client->setMethod($method);
        $headers = [];
        // 设置请求头
        foreach ($options['headers'] as $key => $value) {
            if (is_string($key)) {
                $values = [];
                if (is_array($value)) {
                    foreach ($value as $item) {
                        [$type, $val] = strstr($item, ':') !== false ? explode(':', $item) : [null, null];
                        if ($type && $val) {
                            $values[] = $val;
                        }
                    }
                    $headers[$key] = implode(',', $values);
                } else {
                    $values[] = $value;
                    $headers[$key] = implode(',', $values);
                }
            } else {
                [$type, $val] = strstr($value, ':') !== false ? explode(':', $value) : [null, null];
                $values[] = $val;
                $headers[$type] = implode(',', $values);
            }
        }

        $client->setHeaders($headers);

        if (!empty($options['query'])) {
            $url = $url . (strstr($url, '?') !== false ? '&' : '?') . http_build_query($options['query']);
        }
        if (!empty($options['json'])) {
            $client->setData($options['json']);
        } else if (!empty($options['body'])) {
            $client->setData($options['body']);
        }

        // 发起请求
        $client->execute('/' . $url);

        // 创建响应对象
        $response = new SwooleResponse($client);

        // 关闭客户端连接
        $client->close();

        return $response;
    }
相关推荐
踏实探索7 分钟前
OpenLayers教程12_WebGL自定义着色器:实现高级渲染效果
前端·arcgis·vue·webgl·着色器
raoxiaoya7 分钟前
golang开发GUI桌面应用(六)- wails,WebView2,postMessage,实现原理
开发语言·后端·golang
玹之又玹8 分钟前
一些任务调度的概念杂谈
前端·javascript·数据库
爱喝矿泉水的猛男10 分钟前
JavaWeb
java·开发语言·css·vscode·html·javaweb
cwtlw10 分钟前
Vue学习记录07
前端·vue.js·学习
鲤鱼_59910 分钟前
VConsole——(H5调试工具)前端开发使用于手机端查看控制台和请求发送
前端·vue.js
哎呦没11 分钟前
驾驭未来:Spring Boot汽车资讯门户
数据库·spring boot·php
老码沉思录12 分钟前
Android开发实战班 - 现代 UI 开发之 Material Design及自定义主题
android·ui
盛夏绽放15 分钟前
Vue 3与TypeScript集成指南:构建类型安全的前端应用
前端·vue.js·typescript
江河湖海34 分钟前
用Ruby编写一个自动化测试脚本,验证网站登录功能的正确性。
开发语言·后端·ruby