Robot.php
895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
 * Created by PhpStorm.
 * User: HanSon
 * Date: 2016/12/7
 * Time: 16:12
 */
namespace Hanson\Robot;
use GuzzleHttp\Client;
class Robot
{
    private $client;
    private $uuid;
    private $baseUri;
    private $baseHost;
    private $redirectUri;
    public function __construct()
    {
        $this->client = new Client();
    }
    public function getUuid()
    {
        $response = $this->client->get('https://login.weixin.qq.com/jslogin', [
            'query' => [
                'appid' => 'wx782c26e4c19acffb',
                'fun' => 'new',
                'lang' => 'zh_CN',
                '_' => time() * 1000 . random_int(1, 999)
            ]
        ]);
        $content = $response->getBody()->getContents();
        preg_match('/window.QRLogin.code = (\d+); window.QRLogin.uuid = \"(\S+?)\"/', $content, $matches);
        return $matches;
    }
}