Similar to 403 Forbidden, but specifically for use when authentication is possible but has failed or not yet been provided. The response must include a WWW-Authenticate header field containing a challenge applicable to the requested resource.

learn more… | top users | synonyms

1
vote
1answer
62 views

Angular.js $http.post TypeError: Cannot read property 'data' of undefined

Angular.js v1.0.6 When making an $http.post and receiving a non 200 resposne (401 in this case) $http.post('http://localhost:3030/auth/login', { username: 'username', password: 'password' }) ...
0
votes
0answers
24 views

401 Error on Upload with SWF Upload (.NET) only in Safari and Firefox

I have a really unusual situation. So the site uses SWF Upload as the upload tool and it's filtered to only allow image uploads. Testing this in development and in production work fine. However in the ...
0
votes
1answer
25 views

Redirect 401 “authorization required page” to custom page

Is there a simple way I can encode a front-end php redirect to a custom page upon error? I have a page in a directory protected by an .htaccess password, but if you cancel the system dialog or enter ...
1
vote
1answer
7k views

Server returned HTTP response code: 401 for URL: https

I'm using Java to access a HTTPS site which returns the display in an XML format. I pass the login credentials in the URL itself. Here is the code snippet: DocumentBuilderFactory dbf = ...
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'> ...
0
votes
0answers
20 views

Yammer Downloading with access token unresponsive, issues 401 forbidden?

Hey guys I ran into a weird issue with trying to use the Yammer API's Download URL. Since this is an API call, you would think that you could just append your users access token to the end of the API ...
-1
votes
2answers
51 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
1answer
129 views

Authentication Errors Trying to Access to the Google Analytics API via http (not using oAuth)

I'm trying to build a simple script to import page view counts for articles published via my CMS. I easily constructed my query using the Google Analytics API query builder which quickly returns the ...
1
vote
1answer
79 views

rails devise 401 unauthorized for a specific page

I'm having trouble discerning why my app is returning a 401 Unauthorized. Other actions in my Institutions controller are working just fine while not signed in. However, this and another page are ...
2
votes
3answers
308 views

Using RoboSpice is there a way to get the HTTP Error Code out of an exception?

I am writing an application that uses RoboSpice. In the request listener onRequestFailure( SpiceException arg0 ) is there a way to know for sure that the error was a result of a 401 HTTP Error ...
0
votes
4answers
3k views

HTTP/1.1 401 Authorization Required with HttpClient 4.1.1

Updated Code:- Using SSL, still am getting the same error.. I am trying to open this uri https://some-host/a/getmeta?id=10 (this url is passed to proxi.jsp page) And this is my proxi.jsp page, ...
0
votes
1answer
50 views

Throw a custom 401 HTTP Exception in Kohana

When I throw a HTTP_Exception_401 in Kohana 3.3 I get the following error: Kohana_Exception [ 0 ]: A 'www-authenticate' header must be specified for a HTTP 401 Unauthorized Now the obvious problem ...
0
votes
1answer
101 views

NSURLConnection status code for Asynchronous request iOS 6

Currently using sendAsynchronous from NSURLConnection to make post and get requests, but can't get the status code in the response. Most post suggest the use of NSURLConnection and its delegate ...
2
votes
1answer
73 views

Send BASIC auth by default, rather than wait for HTTP 401

I have a web service that requires a BASIC authentication header to be present in the request, or the service will return an HTTP 401 (unauthorized). This works - when the challenge comes back, the ...
0
votes
0answers
112 views

IIS Windows Authentication to only Login page. Strange behaviour?

I am trying to set my ASP.NET application not prompt username/password to new users.All of the users are intranet users. As first option, i decided to use windows authentication for whole ...
2
votes
0answers
102 views

The remote server returned an error: (401) Unauthorized in Zendesk

I have to access a page from the zendesk.com from my MVC application. I have username and authenticate ticket. When I try to access that page it is returning the error "The remote server returned an ...
1
vote
1answer
2k views

The remote server returned an error: (401) Unauthorized in .NET Remoting

I developed a remoting service (hosting .NET type in the ISS). IIS is configured to use "Integrated Windows Auth". It works perfectly when I execute unit test the service on the "localhost" (the code ...
0
votes
0answers
31 views

Http 401 along with Http 500 in blackberry app development

I am developing a Blackberry Application With Oauth Webservice. While I am sending a GET request, I am getting HTTP 401 status code first although i am sending authorization header properly.When i ...
1
vote
2answers
360 views

Spring RestTemplate invoking webservice with errors and analyze status code

i designed a webservice to perform a task if request parameters are ok, or return 401 Unauthorized http status code if request parameters are wrong or empty. I'm using RestTemplate to perform test ...
0
votes
1answer
56 views

Servlet Filter : how to catch HTTP error

Is there a way to catch HTTP error with a servlet Filter ? Are HTTP errors stored in the filter SevletResponse ? My goal is to catch some authentication errors (401) to redirect user to a spare ...
1
vote
0answers
188 views

Error 401 when trying to deploy app from Google App Engine Launcher

I am having some issues with launching my first app from Google App Engine Launcher. I have already signed up for an account at the App Engine site. After I click on the deploy button, I get the ...
0
votes
1answer
2k views

ASMX web-service-call The request failed with HTTP status 401: Unauthorized

In an Episerver-project a call is made from a website on one server to an ASMX-webservice at another server. The user calling has all right set in IIS 7 to write, create and retrieve files from ...
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: ...
2
votes
3answers
5k views

WGET 401 Unauthorized

I'm trying to use a batch file with WGET to download the public FCC file from here http://wireless.fcc.gov/uls/data/complete/l_micro.zip When I intially run the batch file with parameters wget ...
7
votes
5answers
2k views

Is it possible to send a 401 Unauthorized AND redirect (with a Location)?

I'd like to send a 401 Unauthorized AND redirect the client somewhere. However: if I do it like this: header('HTTP/1.1 401 Unauthorized'); header('Location: /'); the server sends a 302 Found with ...
4
votes
2answers
346 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 ...
3
votes
5answers
3k views

401 Unauthorized using oauth with twitter on iPhone

I use Twitter-OAuth-iPhone. When I try to login on twitter with SA_OAuthTwitterEngine, I received an error 401 I received the delegate call for: - (void) OAuthTwitterController: ...
0
votes
1answer
68 views

Get html from Webclient even then Webclient throws exception

I'm working against an web API and then i authenticate myself to the webb API and provide the wrong username or password the site returns "The remote server returned an error: (401) Unauthorized." and ...
1
vote
0answers
327 views

IE 10 HTTP 401 Error on ajax POST

I've been chasing down an issue and decided to make the most basic reproduction of the issue possible in hopes that a simplified question will help me resolve this. I am receiving a 401 when posting ...
0
votes
0answers
329 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 ...
0
votes
2answers
545 views

Please help = Found interface twitter4j.User, but class was expected on GAE/J

I am using twitter4j-core-2.1.2.jar. Following is my code which executed after callback url hit. Code String token = (String) session.getAttribute("token"); String tokenSecret = ...
1
vote
1answer
132 views

How to display HTTP 401 basic authentication dialog

I am new to web development. I have Android application that hosts some web pages using HTTPServer. I am using Netty to decode/encode request/responses. Now, I want to display basic authentication ...
0
votes
2answers
111 views

Problems with external visibility of Flask web-server

I have managed to to install flask and run the hello-world script: from flask import Flask app = Flask(__name__) @app.route('/') def hello_world(): return 'Hello World!' if __name__ == ...
0
votes
3answers
588 views

What is wrong with my Basic Authentication in my Browser?

i'm trying to goto the following url :- http://user1:pass1@localhost:1234/api/users?format=xml nothing to complex. Notice how i've got the username/password in the url? this, i believe, is for ...
140
votes
6answers
34k views

403 Forbidden vs 401 Unauthorized HTTP responses

For a web page that exists, but for which a user that does not have sufficient privileges, (they are not logged in or do not belong to the proper user group), what is the proper HTTP response to ...
0
votes
0answers
74 views

401 error on sub folder with IIS and Apache reverse proxy

I have an IIS server running an ASP.Net MVC3 application. The site is configured to use Windows authentication over NTLM. Internally the site works perfectly. However, when the site is routed through ...
3
votes
2answers
2k views

Ruby-on-Rails: How to get rid of “you are being redirected” page

I am overriding Devise's failure response so that I can set a 401 status code. However, when the user fails to sign in, they are redirected to a page with a "you are being redirected" link. If I ...
0
votes
2answers
564 views

401.2 after moving to IIS7

We have a website that is supposed to be fully open an available to everyone. It hosts several web services. It is configured for anonymous authentication. I am migrating it from an IIS 6 server to ...
0
votes
0answers
25 views

Unexpected 401's on the Asana API

The Asana developer docs say that 401's occur when an invalid API token is provided. But I am getting 401's intermittently. That is: I repeatedly make the same request, using the same API key and ...
0
votes
2answers
4k views

“The remote server returned an error: (401) Unauthorized” error when trying to upload a file

I found a lot of question about (401) Unauthorized error, but none of them explained to me how to diagnose the issue. I created a new MVC ASP.net app to learn how to upload a file to a sharepoint ...
0
votes
0answers
97 views

Windows 2003 Server IIS App. Can only access with the IP address in the URL

I have a problem with an Web App implemented in Windows 2003 Server IIS. My machine is not in the domain. If I put the IP address, for example **http://192.168.1.210:5555/App** I'm asked for ...
0
votes
1answer
337 views

Command to rebuild applicationHost.config in IIS 7

Is there a way to rebuild the applicationHost.config file in IIS 7 with a Windows command? Or if you can help me fix the issue by modifying this file, that's fine too. When comparing this file to ...
1
vote
1answer
135 views

HTTP Response Code for Proxy Authorization Failure

What should be the HTTP response code for Proxy Authorization failure? I know that 407 is the response code for requesting Proxy Authorization. But, once the clients sends the authentication info to ...
1
vote
2answers
195 views

DNN or IIS 401 Unauthorized error and some failed attempts to diagnose

I'm doing a first time install of DNN, following the tutorials at dotnetnuke.com, and I keep getting stuck. I have Windows 8 so I'm having trouble getting answers from Google, so here's my problem... ...
1
vote
1answer
211 views

401 (Unauthorized) error with ajax request (requires username and password)

I'm making an ajax request to retrieve json data from webtrends - a service that requires a login. I'm passing the username and password in my ajax request, but still gives me a 401 unauthorized ...
0
votes
1answer
117 views

Mvc action returns 401 error

This is a strange one. They always are when I get to this point. I have an MVC app. It's a single page app so all routes are ajax calls but I don't think this is relevant. Strangely and all of a ...
1
vote
1answer
186 views

php and ajax - upload base64 photo and return link to edit

I've tried to make this: Upload photo from a PC as base64 string ("data:image/jpeg;base64,...") PHP will save this photo in full resolition as .jpg and make 160x160 .png thumbnail Then it will ...
0
votes
1answer
214 views

Custom 401 page not prompting for credentials on nginx

I have a part of my website protected by auth_basic : location / { auth_basic "Authorization Required"; auth_basic_user_file .htpasswd; index app.php; ...
0
votes
0answers
68 views

when i used c2dm example, 401 error is occured [closed]

java file package com.example.t1; import java.io.IOException; import java.io.OutputStream; import java.net.URL; import java.net.URLEncoder; import javax.net.ssl.HostnameVerifier; import ...
0
votes
1answer
119 views

Using Fiddler with MVC - Getting 401s

I have fiddler installed and I'm running an MVC3 app through visual studio. Whenever I try to hit the MVC page with fiddler (localhost:28267) I get a 401. How can I determine what's causing this? ...

1 2 3 4 5