mine isn't working WBU ?
Printable View
mine isn't working WBU ?
Post your code, if you interpret the same actions as the browser there is no way yours wouldn't work :p
I so forgot how to make a gaia auth, I still remember with the other site though :) at least.Code:Wrapper.Post("http://www.gaiaonline.com/auth/login", "&username=" + TextBox1.Text + "&password=" + TextBox2.Text)
If Wrapper.Get("http://www.gaiaonline.com/?login_success=1").IndexOf("Welcome back" + TextBox1.Text + "!") Then
MessageBox.Show("logged in")
Else : MessageBox.Show("Failed!")
End If
You're missing the token value and you can transform that into one line.
PHP Code:
if (Wrapper.Post(Gaia_URL_Nor + Gaia_URL_NorLogin, "username=" + Username + "&password=" + Password + "&token=" + Wrapper.Between(Wrapper.Get(Gaia_URL_Nor + Gaia_URL_NorLogin), "token\" value=\"", "\""), Gaia_URL_Nor).IndexOf("gold_amt") > -1)
Holy shit I'm such a n00b , the code game me errors so i did this :
Code:If Wrapper.Post("http://www.gaiaonline.com/auth/login", "&username=" + TextBox1.Text + "&password=" + TextBox2.Text + "&token=" + Wrapper.Between(Wrapper.Get("http://www.gaiaonline.com/auth/login" + "http://www.gaiaonline.com/?login_success=1"), "token\", "value=\", "\"), "http://www.gaiaonline.com/?login_success=1").IndexOf(("gold_amt") > -1) Then
MessageBox.Show("logged in !")
Else : MsgBox("Failed")
End If