1234567891011121314151617181920212223242526272829303132333435 |
- {
-
- "SMDVersion": "2.0",
- "id": "http://apiwiki.twitter.com/w/page/22554756/Twitter-Search-API-Method:-search",
- "description": "Twitter Search API",
-
- "transport": "JSONP",
- "envelope": "URL",
- "additionalParameters": true,
-
- "parameters": [
- // the most important param, the search query:
- { "name": "q", optional: false, "default":"" },
-
- // result size: large | small (8 or 4 per page)
- { "name": "rpp", optional:true, "default": 10 },
- // language selection:
- { "name": "lang", optional:true, "default": "en" },
- // starting page
- { "name": "page", optional:true, "default": 0 }
- ],
- "services": {
- "search": {
- "target": "http://search.twitter.com/search.json",
- "parameters": [
- ]
- }
- }
- }
|