Current section

Files

Jump to
ex_wechat lib wechat core apis qrcode.exs
Raw

lib/wechat/core/apis/qrcode.exs

use Mix.Config
config :create_qrcode_ticket,
doc: """
Generate qrcode ticket.
""",
endpoint: "https://api.weixin.qq.com/cgi-bin",
path: "/qrcode/create",
http: :post,
params: [access_token: nil]
config :get_qrcode,
doc: """
Get qrcode with ticket.
""",
endpoint: "https://api.weixin.qq.com/cgi-bin",
path: "/showqrcode",
http: :get,
params: []