GET
GET = 'get'
Class Page.
$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 |
| null
add(string $title, string $description, string $pageUrl, string $iconUrl, string $comment = '') : \EasyWeChat\Support\Collection
Add a page.
string | $title | |
string | $description | |
string | $pageUrl | |
string | $iconUrl | |
string | $comment |
update(integer $pageId, string $title, string $description, string $pageUrl, string $iconUrl, string $comment = '') : \EasyWeChat\Support\Collection
update a page info.
integer | $pageId | |
string | $title | |
string | $description | |
string | $pageUrl | |
string | $iconUrl | |
string | $comment |
fetchByIds(array $pageIds) : \EasyWeChat\Support\Collection
Fetch batch of pages by pageIds.
array | $pageIds |
pagination(integer $begin, integer $count) : \EasyWeChat\Support\Collection
Pagination to fetch batch of pages.
integer | $begin | |
integer | $count |
delete(integer $pageId) : \EasyWeChat\Support\Collection
delete a page.
integer | $pageId |
<?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.
*/
/**
* Page.php.
*
* @author allen05ren <allen05ren@outlook.com>
* @copyright 2016 overtrue <i@overtrue.me>
*
* @see https://github.com/overtrue
* @see http://overtrue.me
*/
namespace EasyWeChat\ShakeAround;
use EasyWeChat\Core\AbstractAPI;
/**
* Class Page.
*/
class Page extends AbstractAPI
{
const API_ADD = 'https://api.weixin.qq.com/shakearound/page/add';
const API_UPDATE = 'https://api.weixin.qq.com/shakearound/page/update';
const API_SEARCH = 'https://api.weixin.qq.com/shakearound/page/search';
const API_DELETE = 'https://api.weixin.qq.com/shakearound/page/delete';
const API_RELATION_SEARCH = 'https://api.weixin.qq.com/shakearound/relation/search';
/**
* Add a page.
*
* @param string $title
* @param string $description
* @param string $pageUrl
* @param string $iconUrl
* @param string $comment
*
* @return \EasyWeChat\Support\Collection
*/
public function add($title, $description, $pageUrl, $iconUrl, $comment = '')
{
$params = [
'title' => $title,
'description' => $description,
'page_url' => $pageUrl,
'icon_url' => $iconUrl,
];
if ('' !== $comment) {
$params['comment'] = $comment;
}
return $this->parseJSON('json', [self::API_ADD, $params]);
}
/**
* update a page info.
*
* @param int $pageId
* @param string $title
* @param string $description
* @param string $pageUrl
* @param string $iconUrl
* @param string $comment
*
* @return \EasyWeChat\Support\Collection
*/
public function update($pageId, $title, $description, $pageUrl, $iconUrl, $comment = '')
{
$params = [
'page_id' => intval($pageId),
'title' => $title,
'description' => $description,
'page_url' => $pageUrl,
'icon_url' => $iconUrl,
];
if ('' !== $comment) {
$params['comment'] = $comment;
}
return $this->parseJSON('json', [self::API_UPDATE, $params]);
}
/**
* Fetch batch of pages by pageIds.
*
* @param array $pageIds
*
* @return \EasyWeChat\Support\Collection
*/
public function fetchByIds(array $pageIds)
{
$params = [
'type' => 1,
'page_ids' => $pageIds,
];
return $this->parseJSON('json', [self::API_SEARCH, $params]);
}
/**
* Pagination to fetch batch of pages.
*
* @param int $begin
* @param int $count
*
* @return \EasyWeChat\Support\Collection
*/
public function pagination($begin, $count)
{
$params = [
'type' => 2,
'begin' => intval($begin),
'count' => intval($count),
];
return $this->parseJSON('json', [self::API_SEARCH, $params]);
}
/**
* delete a page.
*
* @param int $pageId
*
* @return \EasyWeChat\Support\Collection
*/
public function delete($pageId)
{
$params = [
'page_id' => intval($pageId),
];
return $this->parseJSON('json', [self::API_DELETE, $params]);
}
}