diff options
Diffstat (limited to 'files/pt-br/web/http/status/401/index.html')
-rw-r--r-- | files/pt-br/web/http/status/401/index.html | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/files/pt-br/web/http/status/401/index.html b/files/pt-br/web/http/status/401/index.html new file mode 100644 index 0000000000..f22f69f3d9 --- /dev/null +++ b/files/pt-br/web/http/status/401/index.html @@ -0,0 +1,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> |