aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/http/status/401/index.html
blob: f22f69f3d93665aec80cb055f9bc433c5cdf1cd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
title: 401 Unauthorized
slug: Web/HTTP/Status/401
tags:
  - Código de status
  - Erro Cliente
  - HTTP
  - Referencia
translation_of: Web/HTTP/Status/401
---
<div>{{HTTPSidebar}}</div>

<p>O código de resposta de status de erro do cliente HTTP <strong><code>401 Unauthorized</code></strong>  indica que a solicitação não foi aplicada porque não possui credenciais de autenticação válidas para o recurso de destino.</p>

<p>Esse status é enviado com um cabeçalho {{HTTPHeader("WWW-Authenticate")}} que contém informações sobre como autorizar corretamente.</p>

<p>Esse status é semelhante a {{HTTPStatus("403")}}, mas neste caso, a autenticação é possível.</p>

<h2 id="Status">Status</h2>

<pre class="syntaxbox notranslate">401 Unauthorized</pre>

<h2 id="Exemplo_de_resposta">Exemplo de resposta</h2>

<pre class="notranslate">HTTP/1.1 401 Não autorizado
Date: Wed, 21 Oct 2015 07:28:00 GMT
WWW-Authenticate: Basic realm="Acesso intermediário ao site"</pre>

<h2 id="Especificações">Especificações</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Especificação</th>
   <th scope="col">Título</th>
  </tr>
  <tr>
   <td>{{RFC("7235", "401 Não autorizado" , "3.1")}}</td>
   <td>HTTP/1.1: Autenticação</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilidade_do_navegador">Compatibilidade do navegador</h2>

<p class="hidden">A tabela de compatibilidade nesta página é gerada a partir de dados estruturados. Se você quiser contribuir com os dados, por faveor verifique <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> e nos envie um "pull request".</p>

<p>{{Compat("http.status.401")}}</p>

<h2 id="Veja_também">Veja também</h2>

<ul>
 <li><a href="/en-US/docs/Web/HTTP/Authentication">HTTP authentication</a></li>
 <li>{{HTTPHeader("WWW-Authenticate")}}</li>
 <li>{{HTTPHeader("Authorization")}}</li>
 <li>{{HTTPHeader("Proxy-Authorization")}}</li>
 <li>{{HTTPHeader("Proxy-Authenticate")}}</li>
 <li>{{HTTPStatus("403")}}, {{HTTPStatus("407")}}</li>
</ul>