# File lib/oauth/controllers/provider_controller.rb, line 26
      def access_token
        @token = current_token && current_token.exchange!
        if @token
          render :text => @token.to_query
        else
          render :nothing => true, :status => 401
        end
      end