Product
Product update: New Postbin for debugging webhooks
In additon to open sourcing our MIME parsing and email validation library, we also created a postbin for debugging your webhooks.
PUBLISHED ON
Originally posted on December 7, 2013.
This week, in addition to writing about what we learned open sourcing a major part of Mailgun, we released a new feature we think you’ll appreciate: a postbin for debugging your webhooks.
A Postbin of our own
We try not to suffer too much from not-invented-here syndrome at Mailgun (we’re engineers though, so it’s hard) and for years, there were a couple Postbin’s that we used regularly, and encouraged our customers to use, for debugging webhooks. Our favorite was postbin.ryanbigg.com because it was simple, and the POSTs were easy-to-read. But it’s no longer available, and another that we liked was recently redesigned making it harder to use. So we decided to make our own, focusing on usability and simplicity.
If you go to http://bin.mailgun.net, you’ll now have the ability to create Postbin’s that allow you to easily debug your webhooks, Mailgun-related or otherwise.
A couple of the features you might find helpful are:
Ability to create multiple Postbins, each with their own permalink. This can make it easier to debug multiple webhooks
Each post within the Postbin has its own permalink too. This makes it easy to pass around your POST, for instance, when talking to Mailgun support.
Remember, since Mailgun let’s you test all your webhooks with a sample POST, you can enter your PostBin url in the Mailgun control panel and receive your test POST before coding anything.
In addition, the Mailgun PHP SDK has been modified to allow the Postbin as a destination, making it easy to see exactly what the SDK is posting to Mailgun’s API. Head over to the PHP SDK “Debugging” section for details.
Overtime, we’re hoping to integrate the Mailgun Postbin directly into your control panel, so that you can test your webhooks to a private postbin without having to enter a URL. Until that time, keep the following caveats in mind:
Your POSTs to bin.mailgun.net are public, so don’t post anything confidential or that you wouldn’t want your mom to see.
Your data is deleted after 5 days max and maybe sooner, so don’t store anything you really really need here.
For developers who wish to provision a Postbin programatically, an API is available for the Postbin. Here are the available endpoints:
A sample Flask app for accepting webhooks
Once you’re finally ready to accept POSTs for real, you can use or modify this flask app to accept your POSTs:
Till next week.
Happy sending!
The Mailgunners