def verify_oauth_signature
begin
valid = ClientApplication.verify_request(request) do |request|
- self.current_token = ClientApplication.find_token(request.token)
+ self.current_token = OauthToken.find_token(request.token)
logger.info "self=#{self.class.to_s}"
logger.info "token=#{self.current_token}"
# return the token secret and the consumer secret
end
end
end
-end
\ No newline at end of file
+end