-
-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow for Replay in Service Browser #42
Comments
I assume you're thinking of replaying a webhook, or were you thinking of a web request? I suppose it would be possible to do both. ngrok is pretty awesome, and it does have some features localtunnel doesn't have. My original hesitation was the fact it's written in Ruby and I tried to keep the dependency tree small.... but I have enough personal curiosity to play around with using ngrok instead of localtunnel the next time I get a chance to hack on this part. |
Web hook, web request, whatever. :) Although now that I think about it... it may not make sense. You see, I was But in this case, your Service Browser is just reporting on the pings. It's Right? On Fri, Jun 27, 2014 at 8:12 AM, Corey Butler [email protected]
Raymond Camden, Web Developer for Adobe Email : [email protected] |
I don't think the use case you had in mind makes immediate sense for Fenix since it's designed to be the receiver, not the originator of a webhook. However; it challenged me to think about this in a different way. I'm also doing webhook work in both Node and CF, and I can see the value of a replay when processing a webhook. It would be possible to proxy traffic through Fenix to the endpoint, therefore allowing it to capture request/response attributes. With that data, replays would be possible. I think RequestBin does something like this. I'll have to think about the overall workflow involved, but I think there might be something to this. As it happens to be, I'm actually working on a webhook debugger for a commercial service. I've already got a few non-proprietary nuggets along these lines that could find there way into Fenix... might not be until the next version though. |
Yeah - if Fenix could proxy the call to something like On Fri, Jun 27, 2014 at 12:26 PM, Corey Butler [email protected]
Raymond Camden, Web Developer for Adobe Email : [email protected] |
Yeah, I really like the idea of providing that tunnel BOTH ways. I've got some thinking about the best way to approach it, but consider this on my priority list - and not just because it would save me a TON of time :) |
One cool thing that ngrok does is let you "Replay" a request. This is useful for when you are testing a remote service and don't want to keep asking it to ping you.
The text was updated successfully, but these errors were encountered: