Tagged Questions
0
votes
1answer
37 views
Issue with accessing data from external url- jsonp/json approach not working
I have this below code where I am trying to retrieve data from external url. I am getting 401- unauthorized access error when I try to do this. Please Advice
<script type='text/javascript'>
...
-1
votes
2answers
54 views
how to allow insecure content to be displayed on page
I am trying make AJAX request to external url and try to get Json data from that url. I am getting 401- Authorization error saying that its insecured content when try access the url. Here below is my ...
0
votes
0answers
337 views
401 Using Multiple Authentication Methods IE 10 only
I am not sure if this is more of a coding issue or server setup issue...
On our production site we've run into an issue that is specific to Internet Explorer 10.
I am using jQuery doing an ajax POST ...
4
votes
2answers
347 views
Get rid of a 401 (unauthorized) ajax error in browser console
I'm calling an api through javascript using a jQuery.ajax call. The api respond with 401 if the user is not authenticated and I want to ignore this error only for this call.
I've tried all the ...
1
vote
1answer
279 views
iPhone safari authentication required when setting image (401)
I am trying to set the src of and image tag like this:
var $img = $('img');
$img.error(function(){
$(this).attr('src', 'missingperson.gif');
})
.attr('src', urlToMyPhoto);
Since I have ...
2
votes
1answer
810 views
How can I send a 403 Authentication header, as a cross domain request (CORS) , using a bookmarklet with JQuery?
So I've got a bookmarklet which executes javascript on other websites, which I want to trigger an 403 Authentication Required header, once the Cache button on it, is clicked. That way, a prompt will ...
1
vote
4answers
1k views
Unauthorized result in ajax requests
I have application with many ajax actions (implemented using JQuery.ajax), that returns JSON ot html. Some of them should be accessible only to authorized users, and I decorated them with [Authorize] ...
0
votes
2answers
2k views
401 Unauthorized Webmethod only on the server
I am using jQuery to get some data from an API.
The stream reader authenticates the calls to the api and gets the stream like this:
public string StreamManagerUrlHandler(string requestUrl)
{
...
0
votes
2answers
628 views
jQuery AJAX call in PHP resulting in 401 errors
I've got a intranet site running under IIS7 using PHP 5+, jQuery 1.5.1, Windows Authentication for SSO capabilities.
Whenever I make an AJAX call to another PHP script, Firebug returns a 401 ...
0
votes
3answers
1k views
Jquery - getJSON 401 “bug?”
i have a problem with the jquery getjson.
This code works
$.getJSON('http://twitter.com/status/user_timeline/USERNAME.json?count=10&callback=?', function(twitter_data)
{
alert('works'); ...
2
votes
0answers
718 views
MVC + Ajax call to Controller Loses Authentication
I've seen similar issues in some posts but none of the answers have helped yet.
My MVC app has a few AJAX/JSON response methods in one controller, and the calls get to destination but it doesn't work ...
0
votes
2answers
1k views
Wcf data service - 401 error
Im building a public web site where you need to be logged in and i have been using asmx-services up to now. Now i want to try Wcf data service instead and query the service via jQuery.
It all works ...
7
votes
4answers
11k views
How do I get the HTTP status code with jQuery?
I want to check if a page returns the status code 401. Is this possible?
Here is my try, but it only returns 0.
$.ajax({
url: "http://my-ip/test/test.php",
data: {},
complete: ...
5
votes
3answers
8k views
Getting “401 Unauthorized” error consistently with jquery call to webmethod
I have been struggling to get my jquery call to a webmethod to work. I am being bounced by the server with a "401 Unauthorized" response. I must have an incorrect setting in the web.config or ...