validates_uniqueness_of :key
before_validation_on_create :generate_keys
- def self.find_token(token_key)
- token = OauthToken.find_by_token(token_key, :include => :client_application)
- if token && token.authorized?
- logger.info "Loaded #{token.token} which was authorized by (user_id=#{token.user_id}) on the #{token.authorized_at}"
- token
- else
- nil
- end
- end
-
def self.verify_request(request, options = {}, &block)
begin
signature = OAuth::Signature.build(request, options, &block)