twitter.smd 727 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "SMDVersion": "2.0",
  3. "id": "http://apiwiki.twitter.com/w/page/22554756/Twitter-Search-API-Method:-search",
  4. "description": "Twitter Search API",
  5. "transport": "JSONP",
  6. "envelope": "URL",
  7. "additionalParameters": true,
  8. "parameters": [
  9. // the most important param, the search query:
  10. { "name": "q", optional: false, "default":"" },
  11. // result size: large | small (8 or 4 per page)
  12. { "name": "rpp", optional:true, "default": 10 },
  13. // language selection:
  14. { "name": "lang", optional:true, "default": "en" },
  15. // starting page
  16. { "name": "page", optional:true, "default": 0 }
  17. ],
  18. "services": {
  19. "search": {
  20. "target": "http://search.twitter.com/search.json",
  21. "parameters": [
  22. ]
  23. }
  24. }
  25. }