View previous topic :: View next topic |
Author |
Message |
mpzhoz Guest
|
Posted: Wed Jul 06, 2011 3:36 pm Post subject: auto save login and passw |
|
|
when u click on "Snipe this item" it opens a popup-window and asks for login and password for ebay .. how can i make it auto save login and password ?
270777832239 |
|
Back to top |
|
 |
mario Site Admin

Joined: 03 Oct 2006 Posts: 7267
|
Posted: Wed Jul 06, 2011 4:04 pm Post subject: |
|
|
Edit the script itself - and hard-code your username and password. You will see it at the top of the script. Let me know if you can't find how to do it. |
|
Back to top |
|
 |
mpzhoz Guest
|
Posted: Thu Jul 07, 2011 12:17 pm Post subject: username ok , pass? |
|
|
edited ebay_gixen_-_autosnipe.user.js & found username and i edited it fine ... but i cant find password ! any ideas m8?
34348950520 |
|
Back to top |
|
 |
mpzhoz Guest
|
Posted: Fri Jul 08, 2011 10:02 pm Post subject: |
|
|
mario wrote: | Edit the script itself - and hard-code your username and password. You will see it at the top of the script. Let me know if you can't find how to do it. |
any help ?
342354235 |
|
Back to top |
|
 |
Gixen Advertisements

|
Posted: Fri Jul 08, 2011 10:02 pm Post subject: |
|
|
|
|
Back to top |
|
 |
mario Site Admin

Joined: 03 Oct 2006 Posts: 7267
|
Posted: Sat Jul 09, 2011 5:53 am Post subject: |
|
|
OK, sorry for the late response, I actually had to make some changes in the backend to resolve this. Username you probably figured out already what to do - just hardcode "username" and "gixenusername" to your actual username, e.g.
username="mario";
Password do the following. Find the actual link, it looks like
snipeUrl = "https://www.gixen.com/autosnipe.php?&username=" + username + "&itemid=" + itemId + "...(and so on)
and add your password like this:
snipeUrl = "https://www.gixen.com/autosnipe.php?&username=" + username + "&password=youractualpassword" + "&itemid=" + itemId + "...
Note that since you are now sending it by "GET" instead of "POST" it may not work with some special characters.
Let me know if this resolves the issue. |
|
Back to top |
|
 |
|