I am trying to make a WISPr client. For this, I read the WISPr 1.0, 1.2, and 2.0 specifications.
Given the 1.0 WISPr client, I analyzed LoginURL on the login page in hotspot and tried to execute an authentication request (login = test, password = pass):
POST : http://hotspot.server.com/login Parameters : button=Login&UserName=test&Password=pass&FNAME=0&OriginatingServer=http://www.google.com
My credentials are good because I use them through the HTML form of the web page.
With an HTTP POST request, authentication was always failing:
<AuthenticationReply> <MessageType>120</MessageType> <ResponseCode>100</ResponseCode> <ReplyMessage>Authentication Failure</ReplyMessage> </AuthenticationReply>
I tried with different access points of other networks with other good credentials.
Do you have an idea when my error occurs in my authentication request?
source share