Class: Wechat::ShakeAround::Apply

Inherits:
Object
  • Object
show all
Extended by:
Core::Common, Common
Defined in:
lib/wechat/shake_around/apply.rb

Overview

Apply 是批量申请 iBeacon 设备 UUID 、 Major 和 Minor 的封装类。

Constant Summary

Constants included from Common

Common::ERROR_CODES

Class Method Summary collapse

Methods included from Common

normalize_date, normalize_device_id, normalize_page_ids

Class Method Details

.create(access_token, quantity, reason, comment: nil, poi_id: nil) ⇒ Object

申请设备ID http://mp.weixin.qq.com/wiki/15/b9e012f917e3484b7ed02771156411f3.html#.E7.94.B3.E8.AF.B7.E8.AE.BE.E5.A4.87ID

Return hash format if success: { data:

{
apply_id:      <APPLY_ID>,     // 

}

quantity: 申请的设备ID的数量,单次新增设备超过500个,需走人工审核流程。 reason: 申请理由,不超过100个汉字或200个英文字母。 comment: 备注,不超过15个汉字或30个英文字母。



51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/wechat/shake_around/apply.rb', line 51

def self.create(access_token, quantity, reason, comment: nil, poi_id: nil)

  assert_present! :access_token, access_token
  assert_present! :quantity,     quantity
  assert_present! :reason,       reason

  options = { quantity: quantity, apply_reason: reason }
  options[:comment] = comment if comment.present?
  options[:poi_id]  = poi_id  if poi_id.present?

  post_json "https://api.weixin.qq.com/shakearound/device/applyid?access_token=#{access_token}", body: options

end

.load(access_token, apply_id) ⇒ Object



25
26
27
28
29
30
# File 'lib/wechat/shake_around/apply.rb', line 25

def self.load(access_token, apply_id)
  assert_present! :access_token, access_token
  assert_present! :apply_id,     apply_id

  post_json "https://api.weixin.qq.com/shakearound/device/applystatus?access_token=#{access_token}", body: { apply_id: apply_id.to_i }
end