A free micro-service to reflect and inspect HTTP requests for easier webhook and API development. It provides custom endpoints where you can inspect headers or payloads between other tools, helping you validate and troubleshoot integrations without touching production endpoints.
it('can send a notification when the site is down', function () {
performUptimeCheck('https://request-mirror.ohdear.app/status/500');
Notification::assertSent(UptimeCheckFailedNotification::class);
});
More details in this article from the Oh Dear team.
|