Validate the cloud-center-event signature against your appSecret.
The cloud-center-event signature should be validated for every request when recieving events from the d.velop cloud-center. Refer to the d.velop cloud center API for more information.
import { validateCloudCenterEventSignatureMiddlewareFactory } from "@dvelop-sdk/express-utils";app.use("/some/route/dvelop-cloud-lifecycle-event", validateCloudCenterEventSignatureMiddlewareFactory(process.env.APP_SECRET)); Copy
import { validateCloudCenterEventSignatureMiddlewareFactory } from "@dvelop-sdk/express-utils";app.use("/some/route/dvelop-cloud-lifecycle-event", validateCloudCenterEventSignatureMiddlewareFactory(process.env.APP_SECRET));
Internal
Validate the cloud-center-event signature against your appSecret. You can supply a custom validate-function.
Validate the cloud-center-event signature against your appSecret.
The cloud-center-event signature should be validated for every request when recieving events from the d.velop cloud-center. Refer to the d.velop cloud center API for more information.