I am currently attempting to control the AXT1800 settings through a script. However, I have encountered an issue as the API documentation is currently unreachable. Additionally, the python_glinet library requires access to the API documentation link to fetch the APIs for the first time.
Could you please provide a solution to this issue as soon as possible?
I tried following this documentation. But this library accessing gl_inet APIs , which is unreachable. Later i did SSH into router. And then tried to run the following commands
"uci set wireless.sta.ssid='MR'",
"uci set wireless.sta.key='Ria@2024'",
"uci set wireless.sta.encryption='psk-mixed'",
"uci commit wireless",
"/etc/init.d/network restart"
Its not effecting anything, after setting i can see those reflecting in uci show wireless logs. But not effecting in UI, And the connection is not shifting from the previous network to new network.
Basically i want to replicate the whole process of configuring repeater. starting from enabling the repeater mode, scanning for available WIFI connections, connecting to respective WIFI network. And getting the feedback of whole process.
Please suggest me the specific documentation or code snippet for the required.
And can you tell me why the Gl-Inet API documentation is unreachable?
Hi! You can see the API by navigating the UI with the browser's developer network tool shown. It shows the shape of the requests and responses.
And basically, there are two opening requests: challenge and login
If you'll check the browser's network you see (it's taken just right after logging in):
You'll receive the sid, which is used for any further requests.
Again, just perform the action you want to script on the router's page and you'll see how it's made in the network tool.