Module: Calais
- Defined in:
- lib/calais.rb,
lib/calais/client.rb,
lib/calais/response.rb
Defined Under Namespace
Classes: Client, Error, Response
Constant Summary collapse
- REST_ENDPOINT =
"http://api.opencalais.com/enlighten/rest/"
- BETA_REST_ENDPOINT =
"http://beta.opencalais.com/enlighten/rest/"
- AVAILABLE_CONTENT_TYPES =
{ :xml => 'text/xml', :html => 'text/html', :htmlraw => 'text/htmlraw', :raw => 'text/raw' }
- AVAILABLE_OUTPUT_FORMATS =
{ :rdf => 'xml/rdf', :simple => 'text/simple', :microformats => 'text/microformats', :json => 'application/json' }
- KNOWN_ENABLES =
['GenericRelations', 'SocialTags']
- KNOWN_DISCARDS =
['er/Company', 'er/Geo', 'er/Product']
- MAX_RETRIES =
5
- HTTP_TIMEOUT =
60
- MIN_CONTENT_SIZE =
1
- MAX_CONTENT_SIZE =
100_000