mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
修改注释
This commit is contained in:
parent
db9373b4d3
commit
7fec514e9e
@ -16,7 +16,7 @@ class Freepublish extends BasicWeChat
|
|||||||
/**
|
/**
|
||||||
* 发布接口
|
* 发布接口
|
||||||
* 开发者需要先将图文素材以草稿的形式保存(见“草稿箱/新建草稿”,如需从已保存的草稿中选择,见“草稿箱/获取草稿列表”)
|
* 开发者需要先将图文素材以草稿的形式保存(见“草稿箱/新建草稿”,如需从已保存的草稿中选择,见“草稿箱/获取草稿列表”)
|
||||||
* @param $media_id 选择要发布的草稿的media_id
|
* @param mixed $media_id 选择要发布的草稿的media_id
|
||||||
* @return array
|
* @return array
|
||||||
* @throws Exceptions\LocalCacheException
|
* @throws Exceptions\LocalCacheException
|
||||||
* @throws InvalidResponseException
|
* @throws InvalidResponseException
|
||||||
@ -30,11 +30,10 @@ class Freepublish extends BasicWeChat
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 发布状态轮询接口
|
* 发布状态轮询接口
|
||||||
* @param string $media_id
|
* @param mixed $publish_id
|
||||||
* @param string $outType 返回处理函数
|
* @return array
|
||||||
* @return array|string
|
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||||
* @throws Exceptions\LocalCacheException
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
* @throws InvalidResponseException
|
|
||||||
*/
|
*/
|
||||||
public function get($publish_id)
|
public function get($publish_id)
|
||||||
{
|
{
|
||||||
@ -46,7 +45,7 @@ class Freepublish extends BasicWeChat
|
|||||||
/**
|
/**
|
||||||
* 删除发布
|
* 删除发布
|
||||||
* 发布成功之后,随时可以通过该接口删除。此操作不可逆,请谨慎操作。
|
* 发布成功之后,随时可以通过该接口删除。此操作不可逆,请谨慎操作。
|
||||||
* @param $article_id 成功发布时返回的 article_id
|
* @param mixed $article_id 成功发布时返回的 article_id
|
||||||
* @param int $index 要删除的文章在图文消息中的位置,第一篇编号为1,该字段不填或填0会删除全部文章
|
* @param int $index 要删除的文章在图文消息中的位置,第一篇编号为1,该字段不填或填0会删除全部文章
|
||||||
* @return array
|
* @return array
|
||||||
* @throws Exceptions\LocalCacheException
|
* @throws Exceptions\LocalCacheException
|
||||||
@ -60,10 +59,9 @@ class Freepublish extends BasicWeChat
|
|||||||
return $this->httpPostForJson($url, ['article_id' => $article_id, 'index' => $index]);
|
return $this->httpPostForJson($url, ['article_id' => $article_id, 'index' => $index]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 通过 article_id 获取已发布文章
|
* 通过 article_id 获取已发布文章
|
||||||
* @param $article_id 要获取的草稿的article_id
|
* @param mixed $article_id 要获取的草稿的article_id
|
||||||
* @return array
|
* @return array
|
||||||
* @throws Exceptions\LocalCacheException
|
* @throws Exceptions\LocalCacheException
|
||||||
* @throws InvalidResponseException
|
* @throws InvalidResponseException
|
||||||
@ -75,7 +73,6 @@ class Freepublish extends BasicWeChat
|
|||||||
return $this->httpPostForJson($url, ['article_id' => $article_id]);
|
return $this->httpPostForJson($url, ['article_id' => $article_id]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取成功发布列表
|
* 获取成功发布列表
|
||||||
* @param int $offset 从全部素材的该偏移位置开始返回,0表示从第一个素材返回
|
* @param int $offset 从全部素材的该偏移位置开始返回,0表示从第一个素材返回
|
||||||
|
Loading…
x
Reference in New Issue
Block a user