微信API access_token 驗證 weixin_authorize

https://github.com/lanrion/weixin_authorize php


WeixinAuthorize

Installation

Add this line to your application's Gemfile:git

gem 'weixin_authorize'github

And then execute:微信

$ bundle微信開發

Or install it yourself as:app

$ gem install weixin_authorizecurl

Usage

Init a client

$client ||= WeixinAuthorize.configure do |config|
  config.app_id     = ENV["APPID"]
  config.app_secret = ENV["APPSECRET"]
  config.expired_at = Time.now.to_iend# Or$client ||= WeixinAuthorize::Client.new(ENV["APPID"], ENV["APPSECRET"])

獲取用戶管理信息

分組管理接口

  • 建立分組:

    group = $client.create_group("test")

  • 查詢全部分組:

    groups = $client.groups

  • 查詢用戶所在分組:

    group = $client.get_group_for(ENV["OPENID"])

  • 修改分組名:

    group = $client.update_group_name(ENV["OPENID"], "new_group_name")

  • 移動用戶分組:

    group = $client.update_group_for_openid(ENV["OPENID"], "to_groupid")

自定義菜單

發送客服信息

  • 發送文本信息:

    $client.send_text_custom(to_user, content)

  • 發送圖片信息:

    $client.send_image_custom(to_user, media_id)

  • 發送語音消息:

    $client.send_voice_custom(to_user, media_id)

  • 發送視頻消息:

    $client.send_video_custom(to_user, media_id, options)

  • 發送音樂消息:

    $client.send_music_custom(to_user, media_id, musicurl, hqmusicurl, options)

  • 發送圖文消息:

    $client.send_news_custom(to_user, *articles)

有問題能夠前往:微信開發論壇:http://weixin-dev.com/

相關文章
相關標籤/搜索