Best way to read a webhook request in Meteor

Hi,
an app sends a webhook to an endpoint/url I have given, how can I retrieve the data from this url though within meteor?
I’ ve noticed a node.js library https://www.npmjs.com/package/node-webhooks
and searched around for pure meteor solutions I couldn’t find any though.

Do you have any suggestions?
thank you

Use the WebApp connectHandlers https://docs.meteor.com/packages/webapp.html

2 Likes

I just created a URL-specific route and pointed to a Method to pull in de request. Works like a charm. I can give you some code-samples if you want to?

1 Like

thank you so much I was able to set it up as well easily with the webapp connectHandlers :slight_smile: