Rather than the endpoints returning a List through one single route exchange, camel-twitter creates one route exchange per returned object. As an example, if "timeline/home" results in five statuses, the route will be executed five times (one for each Status).
Endpoint |
Context |
Body Type |
Notice |
---|---|---|---|
directmessage |
direct, polling |
twitter4j.DirectMessage |
|
search |
direct, polling |
twitter4j.Tweet |
|
streaming/filter |
event, polling |
twitter4j.Status |
|
streaming/sample |
event, polling |
twitter4j.Status |
|
timeline/home |
direct, polling |
twitter4j.Status |
|
timeline/mentions |
direct, polling |
twitter4j.Status |
|
timeline/public |
direct, polling |
twitter4j.Status |
@deprecated. Use timeline/home or direct/home instead. Removed from Camel 2.11 onwards. |
timeline/retweetsofme |
direct, polling |
twitter4j.Status |
|
timeline/user |
direct, polling |
twitter4j.Status |
|
trends/daily |
Camel 2.10.1: direct, polling |
twitter4j.Status |
@deprecated. Removed from Camel 2.11 onwards. |
trends/weekly |
Camel 2.10.1: direct, polling |
twitter4j.Status |
@deprecated. Removed from Camel 2.11 onwards. |