# File lib/omniauth/strategies/windows_live/windowslivelogin.rb, line 432
  def processLogin(query)
    query = parse query
    unless query
      debug("Error: processLogin: Failed to parse query.")
      return
    end
    action = query['action']
    unless action == 'login'
      debug("Warning: processLogin: query action ignored: #{action}.")
      return
    end
    token = query['stoken']
    context = CGI.unescape(query['appctx']) if query['appctx']
    processToken(token, context)
  end