Drupal module to provide API integration report.
If your module provides a 3rd party integration and you want to know that connection is configured correctly, this module allows to see all the response information in within a single page.
You may also implement status check for any other Drupal module that does not have such information page.
- Single page for all status checks.
<iframe>
-based status checks (useful for SSO with redirects).
- Implement
hook_status_report_handlers()
to specify your status class. - Extend
StatusReport
class with your 3rd-party endpoint request methods. - Go to
/admin/reports/integration-status-report
to check the status.
Refer to status_report.api.php for implementation example.