Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8739117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T10:52:09+00:00 2026-06-13T10:52:09+00:00

I am using Jquery to do POST to authenticate my page. $.post(api/authenticate, {authkey: authkey},

  • 0

I am using Jquery to do POST to authenticate my page.

$.post("api/authenticate", {"authkey": authkey}, function(data){
    console.log(data);
    if (data.success === "false") {
    window.location="/Login.html";
    } 
});

EDIT!!

If authentication is unsuccessful, my php function will return a json object

{"success":"false"}

However, the console.log(data) does not return me anything. even though I can see the response in the resource.

Anyone knows how can I solve this?

Any help is greatly appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T10:52:10+00:00Added an answer on June 13, 2026 at 10:52 am

    Freon’s answer probably works, here’s an alternative, try forcing the dataType to JSON.

    // This is the signature for $.post
    jQuery.post( url [, data] [, success(data, textStatus, jqXHR)] [, dataType] )
    
    $.post("api/authenticate", {"authkey": authkey}, function(data){
        console.log(data);
        if (data.success === "false") {
            window.location="/Login.html";
        } 
    }, "json");
    

    Another think to look for is to make sure your server responds with a 2xx status. If you return a different status, jQuery will not try to read the response. It will instead look for status code handlers set in the statusCode option that is passed to http://api.jquery.com/jQuery.ajax/

    Example

    jQuery.ajax( "api/authenticate", {
        data: {"authkey": authkey},
        dataType: 'json',
        statusCode: {
           306: function(jqXhr, errorType) {
                alert('Could not login')
                // If you still want to access the response, it's accessible as raw text
                // If it's JSON, you have to parse it.
                alert (jqXhr.responseText);
           }
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written a form using the jQuery .post() function to post the data
I am using jQuery's $.post function to retrieve some data from a php file,
Going slightly crazy here. I'm making an Ajax call using jQuery.post as follows: $.post('php/print.php',{data:dS},function(res){...
I am using jquery post to submit data on server and data having json
How to pass multiple checkboxes using jQuery ajax post this is the ajax function
I am trying to return an error using jquery post function to retrieve the
I am having some troubles with validation using jquery to post a forms data
I am using jQuery.post() to send data to the server, when the server sends
My site developed in Codeigniter, using JQuery post method to retrieve the data, it
I am posting data to servlet using jquery .post() method. The data is being

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.