I’ve created a web trigger that accepts a Bearer token in the Authorization header per this forum post.
This has previously worked as recently as Tues (4/16/24). However, now I receive a 401 and the web trigger function is not invoked.
For example, I’ve made a very simple web trigger:
export const ping = () => ({ statusCode: 200, body: "PONG" });
defined in the manifest yml etc
...
webtrigger:
- key: ping
function: ping-fn
function:
- key: ping-fn
handler: index.ping
...
Sending a request to with no Authorization header returns the expected result.
Sending a request with Authorization=Bearer … returns a 401.
Any advice is appreciated.