Results 1 to 6 of 6

Thread: Neopets Login

  1. #1

    Joined
    Jul 2019
    Posts
    63
    Userbars
    4
    Thanks
    11
    Thanked
    41/21
    DL/UL
    1/0
    Mentioned
    2 times
    Time Online
    1d 17h 19m
    Avg. Time Online
    1m

    Neopets Login

    Is there any guide on here to help with writing my own login routine for neopets? For some reason, I can't get mine to work!

  2. #2
    Saiyan Race
    j03's Avatar
    Joined
    Dec 2011
    Posts
    13,720
    Userbars
    166
    Thanks
    5,906
    Thanked
    33,076/6,608
    DL/UL
    23/36
    Mentioned
    3,867 times
    Time Online
    563d 4h 55m
    Avg. Time Online
    3h 13m
    Quote Originally Posted by Neo1337 View Post
    Is there any guide on here to help with writing my own login routine for neopets? For some reason, I can't get mine to work!
    Show us what you've tried so far so we can try and help.

    I believe there are plenty of threads explaining or showing you a Neopets login example with code in this section, which should still work today.
    (you need an account to see links)
    (you need an account to see links)(you need an account to see links)

    ------------------------
    [02/24/2013] Stealth CORE is made into the first standalone Neopets auto-player.
    ------------------------


  3. #3

    Joined
    Jul 2019
    Posts
    63
    Userbars
    4
    Thanks
    11
    Thanked
    41/21
    DL/UL
    1/0
    Mentioned
    2 times
    Time Online
    1d 17h 19m
    Avg. Time Online
    1m
    This is what I have (trimmed down for easy reading)

    Code:
    HttpWebRequest httpRequest = (HttpWebRequest)WebRequest.Create(URL);
    httpRequest.Headers.Add("Host", Host);
    httpRequest.Headers.Add("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36 Edg/101.0.1210.32");
    httpRequest.Headers.Add("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9");
    httpRequest.Headers.Add("Accept-Language", "en-GB,en;q=0.9");
    httpRequest.Headers.Add("Accept-Encoding", "gzip, deflate");
    httpRequest.Headers.Add("Accept-Charset", "ISO-8859-1,utf-8;q=0.7,*;q=0.7");
    httpRequest.Headers.Add("Keep-Alive", "300");
    httpRequest.Headers.Add("Connection", "keep-alive");
    httpRequest.Headers.Add("Referer", Referer);
    httpRequest.Headers.Add("Cookie", strCookies);
    httpRequest.AutomaticDecompression = DecompressionMethods.GZip;
    httpRequest.Method = Method;
    Code:
    using (var httpResponse = (HttpWebResponse)httpRequest.GetResponse())
    {
       using (var streamReader = new StreamReader(httpResponse.GetResponseStream()))
       {
          String response = streamReader.ReadToEnd();
          strCookies = ParseCookies(response);
    
          return response;
       }
    }
    I'm getting a stack path message, to enable javascript. I'm sure it's some missing header, but I can't quite understand what's wrong.

  4. #4

    Joined
    Jun 2018
    Posts
    4
    Userbars
    0
    Thanks
    1
    Thanked
    2/2
    DL/UL
    2/0
    Mentioned
    3 times
    Time Online
    4h 34m
    Avg. Time Online
    N/A
    The problem is that when StackPath runs it is preventing all Neo logins at the moment.

  5. The Following User Says Thank You to smelly For This Useful Post:

    Neo1337 (05-17-2022)

  6. #5
    Saiyan Race
    j03's Avatar
    Joined
    Dec 2011
    Posts
    13,720
    Userbars
    166
    Thanks
    5,906
    Thanked
    33,076/6,608
    DL/UL
    23/36
    Mentioned
    3,867 times
    Time Online
    563d 4h 55m
    Avg. Time Online
    3h 13m
    As smelly stated, it's not working because SP is interfering.

    Also, your user-agent looks off... might want to stick with one browser. @(you need an account to see links)
    (you need an account to see links)
    (you need an account to see links)(you need an account to see links)

    ------------------------
    [02/24/2013] Stealth CORE is made into the first standalone Neopets auto-player.
    ------------------------


  7. The Following User Says Thank You to j03 For This Useful Post:

    Neo1337 (05-17-2022)

  8. #6

    Joined
    Jul 2019
    Posts
    63
    Userbars
    4
    Thanks
    11
    Thanked
    41/21
    DL/UL
    1/0
    Mentioned
    2 times
    Time Online
    1d 17h 19m
    Avg. Time Online
    1m
    Quote Originally Posted by smelly View Post
    The problem is that when StackPath runs it is preventing all Neo logins at the moment.
    Ah ok, didn't know that!

    Thanks both!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •