You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param {string} requestData.body - The raw body of the incoming webhook request.
11
11
* @param {string} requestData.secret - The webhook secret, obtained from `replicate.webhooks.defaul.secret` method.
12
12
* @param {string} requestData.signature - The webhook signature header from the incoming request, comprising one or more space-delimited signatures.
13
+
* @param {Crypto} [crypto] - An optional `Crypto` implementation that conforms to the [browser Crypto interface](https://developer.mozilla.org/en-US/docs/Web/API/Window/crypto)
* @param {string} requestData.headers["webhook-signature"] - The webhook signature header from the incoming request, comprising one or more space-delimited signatures
23
24
* @param {string} requestData.body - The raw body of the incoming webhook request
24
25
* @param {string} secret - The webhook secret, obtained from `replicate.webhooks.defaul.secret` method
26
+
* @param {Crypto} [crypto] - An optional `Crypto` implementation that conforms to the [browser Crypto interface](https://developer.mozilla.org/en-US/docs/Web/API/Window/crypto)
0 commit comments