Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 645 Bytes

File metadata and controls

23 lines (19 loc) · 645 Bytes

Build Status

Endo2Java

This is a Java implementation of unofficial mobile API of Endomondo.

Login

EndomondoSession session = new EndomondoSession(userName, password);
try {
	session.login();
} catch (LoginException e) {
	LOG.error("exception while trying to login user: {}", userName, e);
}

Retrieve data

session.getAllWorkouts() // basic data, without gps information
session.getWorkout(id) // single workout, all available data (with gps)
session.getAccountInfo()