summaryrefslogtreecommitdiff
path: root/services/backtweet.json
blob: 6c8b2376f77802d9f7af7f41178518158a836a2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
   "api_base_url" : "http://api.backtype.com",
   "version" : "0.2",
   "methods" : {
      "tweets_by_url" : {
         "params" : {
            "optinal" : [
               "itemsperpage",
               "start",
               "end"
            ],
            "required" : [
               "q",
               "key"
            ]
         },
         "expected" : [
            "200"
         ],
         "path" : "/tweets/search/links",
         "method" : "GET"
      },
      "stats_by_url" : {
         "params" : {
            "required" : [
               "q",
               "key"
            ],
            "optional" : [
               "batch"
            ]
         },
         "expected" : [
            "200"
         ],
         "path" : "/tweetcount",
         "method" : "GET"
      },
      "good_tweets_by_url" : {
         "params" : {
            "required" : [
               "q",
               "key"
            ]
         },
         "expected" : [
            "200"
         ],
         "path" : "/goodtweets",
         "method" : "GET"
      }
   },
   "name" : "Backtweet",
   "author" : [
      "franck cuny <franck@lumberjaph.net>"
   ],
   "meta" : {
      "documentation" : "http://www.backtype.com/developers"
   }
}