Folks this is my scenario
There is this external webhook that I would like to test
Is there a way to use VCR or some other tool to record the POST request the webhook makes to my rails app so I can use it in Rspec to run my tests?
The webhook's body is long and very specific that's why I would like to record the request somehow
Is there a way to achieve this?
I tried Requestbin and Charles to record the request but did not manage to make them work so far