Method: Wechat::PlatformsController#callback

Defined in:
app/controllers/wechat/platforms_controller.rb

#callbackObject



23
24
25
26
27
28
# File 'app/controllers/wechat/platforms_controller.rb', line 23

def callback
  @auth = @platform.auths.build
  @auth.auth_code = params[:auth_code]
  @auth.auth_code_expires_at = Time.current + params[:expires_in].to_i
  @auth.save
end