A Java library with a client implementation to interact with the TenneT Equigy API.
To obtain activated energy for a single EAN for a single date, see the following example:
final OAuthClient oAuthClient = new OAuthClient();
final ActivatedEnergyClient activatedEnergyClient = ActivatedEnergyClient.acceptance();
final EquigyCredentials equigyCredentials = new EquigyCredentials();
// Fill in the credentials for your organisation
final OAuthToken oAuthToken = oAuthClient.retrieveToken(equigyCredentials);
final List<ActivatedEnergy> activatedEnergies = activatedEnergyClient.getByQuery(
new EAN18("130539057492609625"),
LocalDate.of(2020, 12, 20),
oAuthToken
);
To build the library, just run ./gradlew clean build
or gradlew.bat clean build
.
This project is licensed under the Mozilla Public License, version 2.0 - see LICENSE for details.
Please read CODE_OF_CONDUCT and CONTRIBUTING for details on the process for submitting pull requests to us.
Please read SUPPORT for how to connect and get into contact with the Equigy-client project.