BaseApi.php
4.5 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?php
/*
* This file is part of the overtrue/wechat.
*
* (c) overtrue <i@overtrue.me>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
/**
* BaseApi.php.
*
* Part of Overtrue\WeChat.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author mingyoung <mingyoungcheung@gmail.com>
* @author lixiao <leonlx126@gmail.com>
* @copyright 2016
*
* @see https://github.com/overtrue
* @see http://overtrue.me
*/
namespace EasyWeChat\OpenPlatform\Api;
class BaseApi extends AbstractOpenPlatform
{
/**
* Get auth info api.
*/
const GET_AUTH_INFO = 'https://api.weixin.qq.com/cgi-bin/component/api_query_auth';
/**
* Get authorizer token api.
*/
const GET_AUTHORIZER_TOKEN = 'https://api.weixin.qq.com/cgi-bin/component/api_authorizer_token';
/**
* Get authorizer info api.
*/
const GET_AUTHORIZER_INFO = 'https://api.weixin.qq.com/cgi-bin/component/api_get_authorizer_info';
/**
* Get authorizer options api.
*/
const GET_AUTHORIZER_OPTION = 'https://api.weixin.qq.com/cgi-bin/component/api_get_authorizer_option';
/**
* Set authorizer options api.
*/
const SET_AUTHORIZER_OPTION = 'https://api.weixin.qq.com/cgi-bin/component/api_set_authorizer_option';
const GET_AUTHORIZER_LIST = 'https://api.weixin.qq.com/cgi-bin/component/api_get_authorizer_list';
/**
* Get authorization info.
*
* @param $authCode
*
* @return \EasyWeChat\Support\Collection
*/
public function getAuthorizationInfo($authCode = null)
{
$params = [
'component_appid' => $this->getAppId(),
'authorization_code' => $authCode ?: $this->request->get('auth_code'),
];
return $this->parseJSON('json', [self::GET_AUTH_INFO, $params]);
}
/**
* Get authorizer token.
*
* It doesn't cache the authorizer-access-token.
* So developers should NEVER call this method.
* It'll called by: AuthorizerAccessToken::renewAccessToken()
*
* @param $appId
* @param $refreshToken
*
* @return \EasyWeChat\Support\Collection
*/
public function getAuthorizerToken($appId, $refreshToken)
{
$params = [
'component_appid' => $this->getAppId(),
'authorizer_appid' => $appId,
'authorizer_refresh_token' => $refreshToken,
];
return $this->parseJSON('json', [self::GET_AUTHORIZER_TOKEN, $params]);
}
/**
* Get authorizer info.
*
* @param string $authorizerAppId
*
* @return \EasyWeChat\Support\Collection
*/
public function getAuthorizerInfo($authorizerAppId)
{
$params = [
'component_appid' => $this->getAppId(),
'authorizer_appid' => $authorizerAppId,
];
return $this->parseJSON('json', [self::GET_AUTHORIZER_INFO, $params]);
}
/**
* Get options.
*
* @param $authorizerAppId
* @param $optionName
*
* @return \EasyWeChat\Support\Collection
*/
public function getAuthorizerOption($authorizerAppId, $optionName)
{
$params = [
'component_appid' => $this->getAppId(),
'authorizer_appid' => $authorizerAppId,
'option_name' => $optionName,
];
return $this->parseJSON('json', [self::GET_AUTHORIZER_OPTION, $params]);
}
/**
* Set authorizer option.
*
* @param $authorizerAppId
* @param $optionName
* @param $optionValue
*
* @return \EasyWeChat\Support\Collection
*/
public function setAuthorizerOption($authorizerAppId, $optionName, $optionValue)
{
$params = [
'component_appid' => $this->getAppId(),
'authorizer_appid' => $authorizerAppId,
'option_name' => $optionName,
'option_value' => $optionValue,
];
return $this->parseJSON('json', [self::SET_AUTHORIZER_OPTION, $params]);
}
/**
* Get authorizer list.
*
* @param int $offset
* @param int $count
*
* @return \EasyWeChat\Support\Collection
*/
public function getAuthorizerList($offset = 0, $count = 500)
{
$params = [
'component_appid' => $this->getAppId(),
'offset' => $offset,
'count' => $count,
];
return $this->parseJSON('json', [self::GET_AUTHORIZER_LIST, $params]);
}
}