Robot.php
1.07 KB
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
51
52
53
54
55
56
57
58
59
60
61
<?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();
}
/**
* 获取UUID
* @throws \Exception
*/
public function getUuid()
{
$content = $this->client->get('https://login.weixin.qq.com/jslogin', [
'query' => [
'appid' => 'wx782c26e4c19acffb',
'fun' => 'new',
'lang' => 'zh_CN',
'_' => time() * 1000 . random_int(1, 999)
]
])->getBody()->getContents();
preg_match('/window.QRLogin.code = (\d+); window.QRLogin.uuid = \"(\S+?)\"/', $content, $matches);
if(!$matches){
throw new \Exception('获取UUID失败');
}
$this->uuid = $matches[2];
}
public function __get($value)
{
return $this->$value;
}
}