Current section
Files
Jump to
Current section
Files
lib/wechat/mp.ex
defmodule Wechat.MP do
@moduledoc false
use Wechat.HTTP, host: Wechat.config[:mp_host]
def get(url, params \\ %{}) do
get!(url, [], params: params).body
end
def show_qrcode(ticket) do
get "/showqrcode", %{
ticket: ticket
}
end
end