Is there a way to add a header the ad-hoc webhook?
await Actor.addWebhook({
eventTypes: ['ACTOR.RUN.SUCCEEDED'],
requestUrl: process.env.RUN_SUCCEEDED_WEBHOOK_URL,
idempotencyKey: process.env.APIFY_ACTOR_RUN_ID,
headers: {
'Authorization': Bearer ${process.env.APIFY_API_TOKEN},
}
})But it seems it's not possible at all? So we are supposed to add a secret to the URL I guess to add Authorization?
