Token Exchange Endpoint
curl -X POST -H "Content-Type: application/json" \
-d '{"email": "john@example.com", "password": "foobar"}' \
http://example.com/api/v2/me{
"person_id": 5,
"token": "X:XXX",
...
}curl -H "Authorization: token X:XXX" \
http://example.com/api/v2/meLast updated