Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 481 for Unauthorized (0.17 sec)

  1. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

                    }
                  }
                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "certificates_v1"
            ]
          }
        },
        "/apis/certificates.k8s.io/v1/certificatesigningrequests": {
          "delete": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

                    }
                  }
                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "internalApiserver_v1alpha1"
            ]
          }
        },
        "/apis/internal.apiserver.k8s.io/v1alpha1/storageversions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

                "type": "string"
              }
            },
            "required": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

                }
                if (status) {
                    return new ActionResponseCredential(() -> {
                        throw new RequestLoggingFilter.RequestClientErrorException("Your request is not authorized.", "401 Unauthorized",
                                HttpServletResponse.SC_UNAUTHORIZED);
                    });
                }
    
                // assert
                if (null == principal) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

                    }
                  }
                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "autoscaling_v1"
            ]
          }
        },
        "/apis/autoscaling/v1/horizontalpodautoscalers": {
          "get": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  6. pkg/test/fakes/imageregistry/main.go

    		encoded := base64.StdEncoding.EncodeToString([]byte(fmt.Sprintf("%v:%v", User, Passwd)))
    		authHdr := r.Header.Get("Authorization")
    		wantHdr := fmt.Sprintf("Basic %s", encoded)
    		if authHdr != wantHdr {
    			log.Infof("Unauthorized: " + r.URL.Path)
    			log.Infof("Got header %q want header %q", authHdr, wantHdr)
    			w.Header().Set("WWW-Authenticate", "Basic")
    			http.Error(w, http.StatusText(http.StatusUnauthorized), http.StatusUnauthorized)
    			return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/security/http-basic-auth.md

    # HTTP Basic Auth
    
    For the simplest cases, you can use HTTP Basic Auth.
    
    In HTTP Basic Auth, the application expects a header that contains a username and a password.
    
    If it doesn't receive it, it returns an HTTP 401 "Unauthorized" error.
    
    And returns a header `WWW-Authenticate` with a value of `Basic`, and an optional `realm` parameter.
    
    That tells the browser to show the integrated prompt for a username and password.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 14:33:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                    }
                  }
                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "apiregistration_v1"
            ]
          }
        },
        "/apis/apiregistration.k8s.io/v1/apiservices": {
          "delete": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/RecoverFromBrokenResolutionIntegrationTest.groovy

            failure.assertHasCause("Could not resolve all files for configuration ':compile'.")
            failure.assertThatCause(CoreMatchers.containsString("Received status code 401 from server: Unauthorized"))
    
            when:
            server.resetExpectations()
            then:
            executer.withArgument("--offline")
            run 'retrieve'
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. docs/zh/docs/advanced/security/http-basic-auth.md

    # HTTP 基础授权
    
    最简单的用例是使用 HTTP 基础授权(HTTP Basic Auth)。
    
    在 HTTP 基础授权中,应用需要请求头包含用户名与密码。
    
    如果没有接收到 HTTP 基础授权,就返回 HTTP 401 `"Unauthorized"` 错误。
    
    并返回含 `Basic` 值的请求头 `WWW-Authenticate`以及可选的 `realm` 参数。
    
    HTTP 基础授权让浏览器显示内置的用户名与密码提示。
    
    输入用户名与密码后,浏览器会把它们自动发送至请求头。
    
    ## 简单的 HTTP 基础授权
    
    * 导入 `HTTPBasic` 与 `HTTPBasicCredentials`
    * 使用 `HTTPBasic` 创建**安全概图**
    * 在*路径操作*的依赖项中使用 `security`
    * 返回类型为 `HTTPBasicCredentials` 的对象:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun May 05 21:32:54 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top