Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
Nesne: AuthenticationAuthorizationResponse
Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
Yanıt gövdesi
Kimlik doğrulama-yetkilendirme yanıtı sırasında gönderilen nesne.
Açık metin JSON yanıtı örneğini aşağıda bulabilirsiniz:
{
"requestId": "375dhjf9-Uydd="
"authorizations": ["LIST_ACCOUNTS", "ASSOCIATE_ACCOUNT"]
}
AuthenticationAuthorizationResponse, PGP veya JWS+JWE kullanılarak şifrelenip imzalanır.
Ayrıca bu değer, web'de güvenli base64 ile kodlanmıştır. Bu kodlama aşağıda gösterilmiştir:
Base64UrlEncode Başka bir deyişle,
AuthenticationAuthorizationRequest, şunlar aracılığıyla iletilmelidir:
işlevler:
Base64UrlEncode(
PGPSignAndEncrypt(
'{"requestId": "375dhjf9-Uydd=",
"authorizations": ["LIST_ACCOUNTS", "ASSOCIATE_ACCOUNT"]}'
)
)
veya
Base64UrlEncode(
JWSignAndEncrypt(
'{"requestId": "375dhjf9-Uydd=",
"authorizations": ["LIST_ACCOUNTS", "ASSOCIATE_ACCOUNT"]}'
)
)
| JSON gösterimi |
{
"requestId": string,
"authorizations": repeated string,
}
|
| Alanlar |
requestId |
string
ZORUNLU: Ödeme entegratörü tarafından Google'a yansıtılır. Bu sayede Google, yeniden oynatma saldırılarını önleyebilir.
|
authorizations |
repeated string
ZORUNLU: Ödeme entegratörü tarafından aşağıdaki durumlara yansıtılır:
Google'a dokunun. Bu, Google'ın
authorizations geri verildi
aynı authorizations geçti.
|
Tüm hakları saklıdır. Java, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2026-02-18 UTC.
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2026-02-18 UTC."],[],["The `AuthenticationAuthorizationResponse` contains a `requestId` (string) and `authorizations` (repeated string). The `requestId` is used to prevent replay attacks, and `authorizations` are checked against the initial request. This JSON data is encrypted and signed using PGP or JWS+JWE, then encoded using `Base64UrlEncode`. The example shows how clear text JSON, including request ID and authorization types like \"LIST_ACCOUNTS\" and \"ASSOCIATE_ACCOUNT,\" is processed.\n"]]