Java-library to communicate with the AVM FritzBox by using the TR-064 protocol.
Use Jitpack: https://jitpack.io/#GameScripting/FritzTR064/
compile 'com.github.GameScripting:FritzTR064:v1.0'
This library depends on:
Get all the posibel Actions:
FritzConnection fc = new FritzConnection("192.168.1.1","<username>","<password>");
fc.init();
fc.printInfo();
The next Example shows how you can get the number of connected Wlan Devices:
FritzConnection fc = new FritzConnection("192.168.1.1","<username>","<password>");
fc.init();
Service service = fc.getService("WLANConfiguration:1");
Action action = service.getAction("GetTotalAssociations");
Response response = action.execute();
int deviceCount = response.getValueAsInteger("NewTotalAssociations");
For more examples see: The Example Folder
- AVM API Description (German)
- Examples