Skip to content

Latest commit

 

History

History
50 lines (40 loc) · 1.51 KB

README.md

File metadata and controls

50 lines (40 loc) · 1.51 KB

Unofficial Java wrapper for the new Skolengo mobility API

Part of The Rabbit Team: https://discord.gg/9u69mxsFT6

Using

Use this Maven repository

<repository>
  <id>vinceh121-snapshots</id>
  <name>vinceh121's Maven repository</name>
  <url>https://maven.vinceh121.me/snapshots</url>
</repository>

And add this dependency

<dependency>
  <groupId>me.vinceh121.jskolengo</groupId>
  <artifactId>wrapper</artifactId>
  <version>0.0.1-SNAPSHOT</version>
</dependency>

Example usage:

JSkolengoAnonymous anon = new JSkolengoAnonymous();

// Collections by pagination, limit and offset
JSONAPIDocument<List<School>> schools = anon.searchSchools("Jules Ferry", 0, 10);
System.out.println(schools);

// Collections by iterable
for (School sch : anon.searchSchools("Jules Ferry")) {
  System.out.println(sch);
}

// Collections by Java Stream
anon.searchSchools("Jules Ferry").stream().forEach(System.out::println);

// Authenticated endpoints
JSkolengo sko = new JSkolengo();
sko.setBearerToken("aaa.bbb.ccc"); // JWT access token, obtained thought OpenID Connect, see https://github.com/maelgangloff/scolengo-token
sko.setEmsCode("entmip"); // See School#getEmsCode

sko.fetchAgendas(LocalDate.now(), LocalDate.now().plusDays(14)).stream().forEach(System.out::println);