# File lib/oauth/controllers/provider_controller.rb, line 17
      def request_token
        @token = current_client_application.create_request_token params
        if @token
          render :text => @token.to_query
        else
          render :nothing => true, :status => 401
        end
      end