dopplr

  • This free trial of Professional Edition is limited to 3 users or less. Contact an admin about purchasing Professional Edition.

 

method:fellows_travellingtoday

Page history last edited by Tom Insam 2 yrs ago

Returns data about all fellows travelling today ( or soon )

 

Usage:

GET /api/fellows_travellingtoday - get fellows of the current user who are travelling today

GET /api/fellows_travellingtoday?travelelr=<username> - get fellows of the named user who are travelling today

 

Response (XML):

  <fellows_travellingtoday>
    <travelling>
    <status>is in London until August 28th</status>
      <name>Matt Biddulph</name>
      <icon_id>361ff28715577fc9d934deef590015be</icon_id>
      <nick>mattb</nick>
      <url>http://www.dopplr.com/traveller/mattb</url>
      <travel_today>true</travel_today>
      <current_trip>
        <city>
          <country_code>GB</country_code>
          <name>London</name>
          <latitude>51.5</latitude>
          <url>http://www.dopplr.com/place/gb/london</url>
          <longitude>-0.116667</longitude>
          <geoname_id>2643743</geoname_id>
        </city>
        <finish>2007-07-22</finish>
        <id>64</id>
        <start>2007-08-28</start>
        <departure>
          <country_code>FI</country_code>
          <name>Helsinki</name>
          <latitude>60.1756</latitude>
          <url>http://www.dopplr.com/place/fi/helsinki</url>
          <longitude>24.9342</longitude>
          <geoname_id>658225</geoname_id>
        </departure>
      </current_trip>
      <home_city>
        <country_code>FI</country_code>
        <name>Helsinki</name>
        <latitude>60.1756</latitude>
        <url>http://www.dopplr.com/place/fi/helsinki</url>
        <longitude>24.9342</longitude>
        <geoname_id>658225</geoname_id>
      </home_city>
      <current_city>
        <country_code>GB</country_code>
        <name>London</name>
        <latitude>51.5</latitude>
        <url>http://www.dopplr.com/place/gb/london</url>
        <longitude>-0.116667</longitude>
        <geoname_id>2643743</geoname_id>
      </current_city>
    </travelling>
    <travelling>
      ...
    </travelling>
  </fellows_travellingtoday>
  

 

Response (JSON):

  {"travelling":[
    { "status":"is in London until August 28th",
      "name":"Matt Biddulph",
      "icon_id":"361ff28715577fc9d934deef590015be",
      "nick":"mattb",
      "current_trip":{
        "city":{"country_code":"GB",
                "name":"London",
                "latitude":51.5,
                "url":"http://www.dopplr.com/place/gb/london",
                "longitude":-0.116667,
                "geoname_id":2643743
               },
        "finish":"08/28/2007",
        "tag":[],
        "id":64,
        "start":"07/18/2007",
        "note":[],
        "departure":{"country_code":"FI",
                     "name":"Helsinki",
                     "latitude":60.1756,
                     "url":"http://www.dopplr.com/place/fi/helsinki",
                     "longitude":24.9342,
                     "geoname_id":658225
                    }
      },
      "home_city":{"country_code":"FI",
                   "name":"Helsinki",
                   "latitude":60.1756,
                   "url":"http://www.dopplr.com/place/fi/helsinki",
                   "longitude":24.9342,
                   "geoname_id":658225
                  },
      "url":"http://www.dopplr.com/traveller/mattb",
      "travel_today":true,
      "current_city":{"country_code":"GB",
                      "name":"London",
                      "latitude":51.5,
                      "url":"http://www.dopplr.com/place/gb/london",
                      "longitude":-0.116667,
                      "geoname_id":2643743
                     }
    },
    ...
  ]}
  

Comments (0)

You don't have permission to comment on this page.