AlexandrErohin
AlexandrErohin
Unfortunately, all request are encrypted and I cannot parse them without having this router Would be great if you could add support for your router by creating PR with new...
Hi Could you check what route is used to open this router's page? go to browser's Inspect window > Network tab
Could you clear logs, select XHR and again go to wifi clients page?
could you run this script and post the results? ``` from tplinkrouterc6u import TplinkRouter from logging import Logger client = TplinkRouter('192.168.0.1', 'yourPassword', logger=Logger('test')) client.authorize() print(client.request('admin/smart_network?form=game_accelerator')) print('---') print(client.request('admin/wireless?form=statistics')) ```
Could you post the request to admin/smart_network?form=game_accelerator that you catched in browser? In screenshot you have opened Headers, please copy info from Request tab
there is the wrong characters in the end of your string
Try this one ``` from tplinkrouterc6u import TplinkRouter from logging import Logger client = TplinkRouter('192.168.0.1', 'yourPassword', logger=Logger('test')) client.authorize() print(client.request('admin/smart_network?form=game_accelerator', 'operation=load') ```
@gordonaspin Thank you!
@gordonaspin yeah, I do the same
Hi! What is your router hardware version?