위치오브젝트의 최종 수집된 위치를 조회하는 API.
http://cms.catchloc.com/api.get.member.location.last.php
api_key : 파트너 API_KEY
member_key : 적용대상의 MEMBER_KEY
timestamp : 현재시간 Unix timestamp
cert_key : API 인증용 hash key
protocol : JSON Object
member_key : 조회대상 MEMBER_KEY
name : 조회대상 이름
latitude : 위도
longitude : 경도
accuracy : 위치 정확도(m)
speed : 속도(km)
odometer : 총 누적이동거리(m)
location_date : 위치확인시간(Unix timestamp, milliseconds)
===== Request =====
http://cms.catchloc.com/api.get.member.location.last.php?
api_key= abcdefghijklmnopqrstuvwxyz1234567890&
member_key=abcdefghijklmnopqrstuvwxyz1234567890&
timestamp=1446624149000&
cert_key=abcdefghijklmnopqrstuvwxyz1234567890
===== Response =====
- 성공 시
{
"member_key":"developer@catchloc.com",
"name":"developer@catchloc.com",
"latitude":"37.3984002",
"longitude":"126.9632804",
"accuracy":44.343,
"speed":64.5,
"odometer":735976,
"location_date":1459927833000
}
- 실패 시
{
"result":"FAIL",
"message":"에러 사유"
}