User Tools

Site Tools


iceowl

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Last revisionBoth sides next revision
iceowl [2008/09/03 00:43] – created 64.122.198.69iceowl [2008/12/20 19:14] – old revision restored 97.115.76.235
Line 1: Line 1:
-IceOwl - an open source location broker.+IceOwl - an open source location broker. (soon to be renamed to [[IceCondor]] since iceowl is an existing project)
  
 <code> <code>
 + input format: HTTP get/post variables
 + output format: JSON
 + error reporting: HTTP response code
 +
 + position_record:
 +  lat: <x>
 +  long: <y>
 +  alt: <z>
 +  time: <z>
 +  id: <url>
 +
 HTTP actions: HTTP actions:
- (after oauth login) + 
- POST position+ POST position  (requires oauth login, which provides the user's id/url)
  input:  input:
   lat=<x> long=<y> alt=<z> time=<w>   lat=<x> long=<y> alt=<z> time=<w>
  output:  output:
-  status: <code>+
  
  GET position  GET position
Line 14: Line 25:
   id=<identity url>   id=<identity url>
  output  output
-  lat<x> +  position_record 
-  long<y> + 
-  alt<z> + GET nearby 
-  time: <z>+ input 
 +  lat=<x> long=<y> alt=<z> 
 +  radius=<in meters> 
 + output 
 +  array [ 
 +   position record 
 +   ... 
 +  ]
  
 </code> </code>