GET
GET = 'get'
Class AbstractAPI.
$request : \Symfony\Component\HttpFoundation\Request
Request.
$http : \EasyWeChat\Core\Http
Http instance.
$accessToken : \EasyWeChat\Core\AccessToken
The request token.
__construct(\EasyWeChat\Core\AccessToken $accessToken)
Constructor.
\EasyWeChat\Core\AccessToken | $accessToken |
getHttp() : \EasyWeChat\Core\Http
Return the http instance.
setHttp(\EasyWeChat\Core\Http $http) : $this
Set the http instance.
\EasyWeChat\Core\Http | $http |
getAccessToken() : \EasyWeChat\Core\AccessToken
Return the current accessToken.
setAccessToken(\EasyWeChat\Core\AccessToken $accessToken) : $this
Set the request token.
\EasyWeChat\Core\AccessToken | $accessToken |
parseJSON(string $method, array $args) : \EasyWeChat\Support\Collection
Parse JSON from response and check error.
string | $method | |
array | $args |
getAuthorizationInfo( $authCode = null) : \EasyWeChat\Support\Collection
Get authorization info.
$authCode |
getAuthorizerToken( $appId, $refreshToken) : \EasyWeChat\Support\Collection
Get authorizer token.
It doesn't cache the authorizer-access-token. So developers should NEVER call this method. It'll called by: AuthorizerAccessToken::renewAccessToken()
$appId | ||
$refreshToken |
getAuthorizerInfo(string $authorizerAppId) : \EasyWeChat\Support\Collection
Get authorizer info.
string | $authorizerAppId |
getAuthorizerOption( $authorizerAppId, $optionName) : \EasyWeChat\Support\Collection
Get options.
$authorizerAppId | ||
$optionName |
setAuthorizerOption( $authorizerAppId, $optionName, $optionValue) : \EasyWeChat\Support\Collection
Set authorizer option.
$authorizerAppId | ||
$optionName | ||
$optionValue |
getAuthorizerList(integer $offset, integer $count = 500) : \EasyWeChat\Support\Collection
Get authorizer list.
integer | $offset | |
integer | $count |