exchange_rooms 0.0.6 copy "exchange_rooms: ^0.0.6" to clipboard
exchange_rooms: ^0.0.6 copied to clipboard

Getting appointments from a room on Exchange Server 2010+ using the EWS API. Simply use the email address of the room an get an array of appointments

exchange_rooms #

A flutter package to get appointments from a room on Exchange Server 2010+.

Example #

The package uses the EWS Api. To get the appointments use the following code:

  final rooms = ExchangeRooms(
    credentials: ConnectionCredentials(
                        username: 'username',
                        password: 'TopSecretExchangePassword',
                        domain: 'domain.local',
                        serverUrl: 'https://mail.domain.com/EWS/Exchange.asmx')
  );

      var appointments = await rooms.getAppointmentsByRoomName('roomName',
      count: 2, from: DateTime(2020,11,06), to: DateTime(2020,11,14));
1
likes
40
pub points
0%
popularity

Publisher

verified publishereloware.com

Getting appointments from a room on Exchange Server 2010+ using the EWS API. Simply use the email address of the room an get an array of appointments

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, http, xml

More

Packages that depend on exchange_rooms