aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/http/status/407/index.html
blob: 43e0a846cad3fdd56454203885ea2f3834f968d5 (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
---
title: 407 Proxy Authentication Required
slug: Web/HTTP/Status/407
tags:
  - Código de status
  - Erro Cliente
  - Referencia
translation_of: Web/HTTP/Status/407
---
<div>{{HTTPSidebar}}</div>

<p> </p>

<p>O código de resposta HTTP <strong><code>407 Proxy Authentication Required</code> </strong>indica um erro do lado cliente, informando que uma solicitação não está sendo bem aplicada. Isso ocorre porque falta a validar as credencias de autenticação para um {{Glossary("proxy server")}} que intermedia o navegador e o servidor que pode acessar o recurso solicitado.</p>

<p>Este erro é enviado com um cabeçalho {{HTTPHeader("Proxy-Authenticate")}} que contém informações de como fazer uma autorização correta.</p>

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

<pre class="syntaxbox">407 Proxy Authentication Required </pre>

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

<pre>HTTP/1.1 407 Proxy Authentication Required
Date: Wed, 21 Oct 2015 07:28:00 GMT
Proxy-Authenticate: Basic realm="Access to internal site"</pre>

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

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Epecificação</th>
   <th scope="col">Título</th>
  </tr>
  <tr>
   <td>{{RFC("7235", "407 Proxy Authentication Required" , "3.2")}}</td>
   <td>HTTP/1.1: Authentication</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilidade_entre_navegadores">Compatibilidade entre navegadores</h2>

<p class="hidden">A tabela de compatibilidade nesta página é gerada através de dados estruturados. Se você quiser contribuir com os dados, acesse <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.407")}}</p>

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

<ul>
 <li><a href="/pt-BR/docs/Web/HTTP/Authentication">Autenticação HTTP</a></li>
 <li>{{HTTPHeader("WWW-Authenticate")}}</li>
 <li>{{HTTPHeader("Authorization")}}</li>
 <li>{{HTTPHeader("Proxy-Authorization")}}</li>
 <li>{{HTTPHeader("Proxy-Authenticate")}}</li>
 <li>{{HTTPStatus("401")}}, {{HTTPStatus("403")}}</li>
</ul>