これらのメソッドの場合、API は長時間実行オペレーションを返します。これを使用して、非同期オペレーションのステータスの詳細をリクエストできます。完了すると、長時間実行オペレーションによって error フィールドと response フィールドに値が入力されます。Google Ads API のオペレーションでは、常に response に Empty 値が取り込まれます。error が存在する場合は、別の API 呼び出しからエラーの完全なリストを取得できます。
長時間実行オペレーションの一部としてエラーの完全なリストが返された場合、非同期の進捗状況をフォローアップしないとエラーが失われ、単純なポーリング リクエストに対するレスポンスの値が想定よりも大きくなる可能性があります。したがって、長時間実行オペレーションはエラーがあることのみを表示するため、特定のエラーをフェッチするには API エンドポイントを使用する必要があります。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-03-29 UTC。"],[[["The `ExperimentService` uses a different error reporting mechanism for its asynchronous operations like scheduling and promoting experiments."],["Asynchronous operations return a longrunning operation; check its `error` field to see if errors occurred during the operation."],["To retrieve the full list of errors for an asynchronous experiment operation, use the `ExperimentService.ListExperimentAsyncErrors` method with the experiment's resource name."],["Instead of including all errors in the initial response, this approach prevents potential data loss and keeps response sizes manageable."]]],[]]