lschlessinger
lschlessinger

Reputation: 1954

How to log someone into Wi-Fi network with JavaScript

I know that the Network Information API, which has very limited support, allows you to detect changes in the connection and access the connection type.

For example, it's possible to use the Android WifiManager class to programmatically connect to a Wi-Fi network. I'm wondering if it's possible to do through a browser.

Is there any API that I could use to log someone into a Wi-Fi network or at least fill in the password on either a mobile browser or on Chrome?

Upvotes: 1

Views: 338

Answers (1)

Sal
Sal

Reputation: 5703

Mainstream browsers will not allow such access for security reasons. So, browsers cannot directly interact with system functionality.

Upvotes: 2

Related Questions