isen_aurion_client 2.3.0
isen_aurion_client: ^2.3.0 copied to clipboard
A dart api that interfaces with the ERP Aurion used by the ISEN.
import 'package:isen_aurion_client/client.dart';
void main(List<String> args) async {
String serviceUrl = 'https://web.isen-ouest.fr/webAurion/';
IsenAurionClient client = IsenAurionClient(serviceUrl: serviceUrl);
// those are example credentials, if you hadn't noticed
await client.login(
'username',
'password',
);
var schedule = await client.getUserSchedule();
// then do whatever you want with that schedule.
print(schedule);
}