Загрузка данных


javax.net.ssl|DEBUG|10|main|2026-07-10 10:55:39.518 MSK|CertificateRequest.java:721|Consuming CertificateRequest handshake message (
"CertificateRequest": {
  "certificate types": [rsa_sign, dss_sign, ecdsa_sign]
  "supported signature algorithms": [ecdsa_secp256r1_sha256, ecdsa_secp384r1_sha384, ecdsa_secp521r1_sha512, ed25519, ed448, rsa_pss_pss_sha256, rsa_pss_pss_sha384, rsa_pss_pss_sha512, rsa_pss_rsae_sha256, rsa_pss_rsae_sha384, rsa_pss_rsae_sha512, rsa_pkcs1_sha256, rsa_pkcs1_sha384, rsa_pkcs1_sha512, ecdsa_sha224, ecdsa_sha1, rsa_sha224, rsa_pkcs1_sha1, dsa_sha224, dsa_sha1, dsa_sha256, dsa_sha384, dsa_sha512]
  "certificate authorities": [CN=SberCA Test1 Ext, O=Sberbank of Russia, C=RU, CN=SberCA Test1 Root Ext, O=Sberbank of Russia, C=RU, CN=SberCA Test Ext, O=Sberbank of Russia, C=RU, CN=SberCA Test Root Ext, O=Sberbank of Russia, C=RU, CN=SberCA Test Ext G2, O=Sberbank of Russia, C=RU]
}
)
javax.net.ssl|WARNING|10|main|2026-07-10 10:55:39.518 MSK|SignatureScheme.java:479|Unsupported signature scheme: ecdsa_sha1
javax.net.ssl|WARNING|10|main|2026-07-10 10:55:39.518 MSK|SignatureScheme.java:479|Unsupported signature scheme: rsa_pkcs1_sha1
javax.net.ssl|WARNING|10|main|2026-07-10 10:55:39.518 MSK|SignatureScheme.java:479|Unsupported signature scheme: dsa_sha1
...
401
PLATFORM_SESSION=SYGx-yMQeMG0-65LnA_x0A..|1783673740|nPxpx14FMH9lgUoA2hJulA..|V6iyxdd5kJL3SsUbdonbH02PJes.;Path=/;Secure;HttpOnly;SameSite=Lax
Date=Fri, 10 Jul 2026 07:55:40 GMT
Content-Type=text/html; charset=utf-8
Transfer-Encoding=chunked
Connection=keep-alive
Keep-Alive=timeout=170
Set-Cookie=PLATFORM_SESSION=SYGx-yMQeMG0-65LnA_x0A..|1783673740|nPxpx14FMH9lgUoA2hJulA..|V6iyxdd5kJL3SsUbdonbH02PJes.; Path=/; SameSite=Lax; Secure; HttpOnly
X-Proxy-Request-ID=51214f019d63477fc3d5b1d6ce9c21a1
Server=PlatformV IAM/3.2.0 AUTH/4.6.0 (IAM Proxy; distribution 3.2.0-2-repacked-318) SberLinux/8.10 (VMware; 2 vCPU; tvlss-sber00013)
X-Proxy=10.48.74.227
Strict-Transport-Security=max-age=31536000; includeSubDomains
X-Content-Type-Options=nosniff
HTTP/1.1 401 Unauthorized
Date: Fri, 10 Jul 2026 07:55:40 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=170
Set-Cookie: PLATFORM_SESSION=SYGx-yMQeMG0-65LnA_x0A..|1783673740|nPxpx14FMH9lgUoA2hJulA..|V6iyxdd5kJL3SsUbdonbH02PJes.; Path=/; SameSite=Lax; Secure; HttpOnly
X-Proxy-Request-ID: 51214f019d63477fc3d5b1d6ce9c21a1
Server: PlatformV IAM/3.2.0 AUTH/4.6.0 (IAM Proxy; distribution 3.2.0-2-repacked-318) SberLinux/8.10 (VMware; 2 vCPU; tvlss-sber00013)
X-Proxy: 10.48.74.227
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-Content-Type-Options: nosniff

<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/>
    <meta http-equiv="Pragma" content="no-cache"/>
    <meta http-equiv="Expires" content="0"/>
    <link type="text/css" rel="stylesheet" href="/proxy/info.css"/>
    <title>Ошибка при аутентификации</title>
  </head>
  <body>
    <div class="main">
      <div>
        <img class="img" src="/proxy/cat404.png"/>
      </div>
      <div class="msg">
        <h1>Ошибка при аутентификации</h1>

        Error auth by OIDC. request to the redirect_uri path but there's no session state found

                <p>
Повторить           <a shape="rect" href="/">вход в систему</a>
.        </p>
        <hr/>
        <em>Auth Platform team.</em>
      </div>
    </div>
  </body>
</html>

    CookieFilter cookieFilter = new CookieFilter();
    RestAssuredConfig sslConfig = SslConfiguration.getP12Config();
    Response response = restService.restClient()
        .get(spec -> spec
                .filter(cookieFilter)
                .config(sslConfig)
                .log().all(),
            AuthConfiguration.AUTH_URL)
        .toResponse();

    System.out.println(response.statusCode());
    System.out.println(response.getDetailedCookies());
    System.out.println(response.getHeaders());
    response.then().log().all();