sessionCookieInvalid constant

ErrorReason const sessionCookieInvalid

The request is denied because the provided session cookie is missing, invalid or failed to decode.

Example of an ErrorInfo when the request is calling Cloud Storage service with a SID cookie which can't be decoded.

{ "reason": "SESSION_COOKIE_INVALID",
  "domain": "googleapis.com",
  "metadata": {
    "service": "storage.googleapis.com",
    "method": "google.storage.v1.Storage.GetObject",
    "cookie": "SID"
  }
}

Implementation

static const sessionCookieInvalid = ErrorReason('SESSION_COOKIE_INVALID');