I am working on an e-commerce site and I need google sign-on it, so when a user creates his/her shopping list and click on the add to list button. I am able to send my data through the $.ajax() method, so what I exactly want is when the response from ajax method come it should redirect me to Login page if the user is not logged in, else it should save my object.
|
|
|||||||
|
|
In the target endpoint of that .ajax() call, check your authentication, and if the user is not logged in, set the response header to - 401 Unauthorized. Then in the .ajax() do this:
The response header being set to 401 will trigger .ajax()'s error function, instead of the success function. Edit: Also note, that if this is a cross-domain jsonp call, it won't work, as jsonp requests fail silently and don't trigger the error function |
|||||||||||
|
|
check in your response callback function and write your programming logic that you want
to redirect window by javascript use
|
|||||
|
|
You can redirect to login page using window.location = 'yourlocation' in either success or error function of the response (depending upon what response you are gettig from server. If you are bringing the response code in header 401 error function will be executed other wise success). but i think what you would like to have is take user back to the same page after login from which he started. If you are interrested in this, you can use spring security for this. Its very easy to integrate if you are using spring already. If you are not using spring you might look for some alternative for the same. Following links may help you |
|||||
|
|
In jquery there is .post() method found to do this. In action page you can do whatever you want. |
|||||
|
