Module: ThirdPartyWxa::Api::Member

Included in:
Plugin
Defined in:
lib/third_party_wxa/api/member.rb

Instance Method Summary collapse

Instance Method Details

#bind_tester(options = {}) ⇒ Object



7
8
9
# File 'lib/third_party_wxa/api/member.rb', line 7

def bind_tester options={}
	http_post_with_token options, 'wxa', 'bind_tester', {wechatid: options.delete(:wechatid)}
end

#get_experiencer(options = {}) ⇒ Object



19
20
21
22
# File 'lib/third_party_wxa/api/member.rb', line 19

def get_experiencer options={}
     options.delete(:action)
	http_post_with_token options, 'wxa', 'memberauth', {action:"get_experiencer"}
end

#unbind_tester(options = {}) ⇒ Object

2、解除绑定小程序的体验者 api.weixin.qq.com/wxa/unbind_tester?access_token=TOKEN



13
14
15
# File 'lib/third_party_wxa/api/member.rb', line 13

def unbind_tester options={}
	http_post_with_token options, 'wxa', 'unbind_tester', {wechatid: options.delete(:wechatid)}
end