Imvu Post Data

DataMine
by DataMine · 2 posts
12 years ago in HTML & CSS
Posted 12 years ago · Author
This is the information I gathered with Tamper Data when you log into the IMVU website. It is useful if you're working with login code and need the post data, referrer, input boxes names/id etc..

You can see it in use in the IMVU login I was able to get put together here: viewtopic.php?f=109&t=8487 or here: viewtopic.php?f=109&t=8503

If you're working with a macro script or a web browser control etc.., you may need the names/id of these to inject/invoke them.
Avatar Name Input Box:
Code
<input type="text" tabindex="1" value="" id="login_field" name="avatarname">

Password Input Box:
Code
<input type="password" tabindex="1" value="" id="password_field" name="password">

Login Button:
Code
<button id="btn_logon" tabindex="1" type="submit"><span>Login</span></button>


Web Request (This is the url you send the post data to):
Code
 https://secure.imvu.com/login/login/


Post Data (Replace AVATAR and PASSWORD with your avatar name and password or set them up with input boxes):
Code
POSTDATA=sauce=&avatarname=AVATAR&password=PASSWORD&password_strength=strong&sendto=


Referrer (The site you want it to read you came from. I am not sure if it has to be this url so you will have to experiment. This is just what Tamper Data gave me):
Code
http://www.imvu.com/login/


My Imvu Page Title Code (This is for checking for a successful or unsuccessful login. This code won't be in your response if you didn't log in successfully ;)):
Code
<title>My IMVU</title>
Posted 4 years ago
Oh This is very helpful to programmers ty! :dancingapple:

Create an account or sign in to comment

You need to be a member in order to leave a comment

Sign in

Already have an account? Sign in here

SIGN IN NOW

Create an account

Sign up for a new account in our community. It's easy!

REGISTER A NEW ACCOUNT