View Source WeChat.Account (wechat v0.16.0)

账号管理

Summary

Types

二维码类型

Types

@type qrcode_action_name() :: String.t()

二维码类型

  • "QR_SCENE" 为临时的整型参数值
  • "QR_STR_SCENE" 为临时的字符串参数值
  • "QR_LIMIT_SCENE" 为永久的整型参数值
  • "QR_LIMIT_STR_SCENE" 为永久的字符串参数值

Functions

@spec clear_quota(WeChat.client()) :: WeChat.response()

接口调用次数清零 - 官方文档

接口调用频次限制说明

Link to this function

create_qrcode(client, scene_id, action_name \\ "QR_LIMIT_SCENE", expire_seconds \\ 1800)

View Source
@spec create_qrcode(
  WeChat.client(),
  scene_id :: String.t(),
  qrcode_action_name(),
  expire_seconds :: integer()
) :: WeChat.response()

生成二维码 - 官方文档

Link to this function

download_qrcode(client, scene_id, action_name \\ "QR_LIMIT_SCENE", expire_seconds \\ 1800, dir_name \\ ".")

View Source
@spec download_qrcode(
  WeChat.client(),
  scene_id :: String.t(),
  qrcode_action_name(),
  expire_seconds :: integer(),
  dir_name :: Path.t()
) :: WeChat.response() | {Collectable.t(), exit_status :: non_neg_integer()}

生成并下载二维码 - 官方文档

Link to this function

get_access_token(client)

View Source
@spec get_access_token(WeChat.client()) :: WeChat.response()

获取AccessToken - 官方文档

Link to this function

get_auto_reply_rules(client)

View Source
@spec get_auto_reply_rules(WeChat.client()) :: WeChat.response()

获取公众号的自动回复规则 - 官方文档

获取公众号当前使用的自动回复规则,包括关注后自动回复、消息自动回复(60分钟内触发一次)、关键词自动回复。

请注意:

  • 第三方平台开发者可以通过本接口,在旗下公众号将业务授权给你后,立即通过本接口检测公众号的自动回复配置。
  • 本接口仅能获取公众号在公众平台官网的自动回复功能中设置的自动回复规则,若公众号自行开发实现自动回复,或通过第三方平台开发者来实现,则无法获取。
  • 认证/未认证的服务号/订阅号,以及接口测试号,均拥有该接口权限。
  • 从第三方平台的公众号登录授权机制上来说,该接口从属于消息与菜单权限集。
  • 本接口中返回的图片/语音/视频为临时素材(临时素材每次获取都不同,3天内有效,通过素材管理-获取临时素材接口来获取这些素材), 本接口返回的图文消息为永久素材素材(通过素材管理-获取永久素材接口来获取这些素材)。
Link to this function

get_qrcode_url(client, scene_id, action_name \\ "QR_LIMIT_SCENE", expire_seconds \\ 1800)

View Source
@spec get_qrcode_url(
  WeChat.client(),
  scene_id :: String.t(),
  qrcode_action_name(),
  expire_seconds :: integer()
) :: WeChat.response() | {:ok, url :: String.t()}

生成并获取二维码链接 - 官方文档

Link to this function

get_quota(client, cgi_path)

View Source
@spec get_quota(WeChat.client(), cgi_path :: String.t()) :: WeChat.response()

查询接口调用次数 - 官方文档

接口调用频次限制说明

Link to this function

short_url(client, long_url)

View Source
@spec short_url(WeChat.client(), long_url :: String.t()) :: WeChat.response()

长链接转成短链接 - 官方文档