Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check WiFi is pass through web page login?

I need to check WiFi is pass through web page login or not, but I don't know how to do.

So I need someone can help me or explain how to wifi via web page login. thanks.

like image 391
Daniel Avatar asked Jan 02 '11 09:01

Daniel


People also ask

Can I see the Wi-Fi password if im logged in?

Right-click on your computer's Wi-Fi adapter in the list, choose Status > Wireless Properties. Under the Security tab, you should see a password box with dots in it—click the Show Characters box to see the password appear in plain text.

How can I see password of Wi-Fi not connected?

In Network and Sharing Center, next to Connections, select your Wi-Fi network name. In Wi-Fi Status, select Wireless Properties. In Wireless Network Properties, select the Security tab, then select the Show characters check box. Your Wi-Fi network password is displayed in the Network security key box.


1 Answers

On Android: You can implement your own RedirectHandler and then use it in an HttpClient to hit a website that should never be redirected. If you get redirected then this access point is likely a walled garden (no access to the internet, without further steps). After that you are unlikely to be able to simply log in for the user programmatically, since the user could be anywhere and may need to pay to use the internet: hotel, airplane, coffee shop. Instead the best course of action is to inform the user with a dialog that they will need to perform additional steps to reach the internet using the Wi-Fi access point they are currently connected to and then allow them to easily open the web browser to a website that will trigger the redirect such as www.google.com. I know this solution works because I've implemented it myself before.

On iPhone this probably isn't necessary since the iPhone already detects walled garden Wi-Fi access points as soon as the user connects to them and shows the browser. If the user fails to connect to the internet the iPhone disconnects the user from the Wi-Fi access point.

like image 179
satur9nine Avatar answered Oct 04 '22 00:10

satur9nine