Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi! I have a api to store data when user posts something. how can i add this api to create post hook? also what is the hook for create/update post? Thanks!
If you do not need to wait for NodeBB to finish saving the post, you can listen for action:topic.reply (it sends in { post, data })
action:topic.reply
{ post, data }
@julian ok, but where i have to add api? i installed nodebb-plugin-webhooks but how to add api for particular event?
The web hooks plugin would allow you to tie logic to specific actions from NodeBB to your own app.
So you'd plug a URL into the web hooks plugin.