FeedbackEcho Embedded Widget Integration Guide

Overview

The FeedbackEcho embedded widget allows you to easily collect user feedback on any website. With just one line of code integration, it supports multi-language (English only in current configuration), privacy protection, and performance optimization.

🚀 Quick Start

Basic Integration

Add the following code to your HTML page:

<body>
  <!-- Custom Button -->
  <button onclick="openFeedback()" style="position: fixed; bottom: 20px; right:
20px; padding: 12px 24px; background: #4f46e5; color: white; border: none;
border-radius: 25px; cursor: pointer; box-shadow: 0 4px 12px rgba(79,70,229,0.3);
font-size: 16px; z-index: 9999;">
    💬 Feedback
  </button>
  <script>
    function openFeedback() {
      if (window.FeedbackEchoWidget) {
        window.FeedbackEchoWidget.open();
      } else {
        alert('Widget loading failed');
      }
    }
    setTimeout(() => {
      if (window.FeedbackEchoWidget) {
        console.log('✅ FeedbackEcho Widget loaded');
      }
    }, 2000);
  </script>
  <script src="https://feedback-echo.com/widget/v1/[your-organization-slug].js?v=3.2&min=true"></script>
</body>

Replace [your-organization-slug] with your organization's unique identifier. The widget will automatically load and appear in the bottom-right corner of your page.

Finding Your Organization Slug

  • Login to your FeedbackEcho dashboard
  • Navigate to SettingsOrganization Settings
  • Your organization slug is displayed in the URL or organization information section
  • Alternatively, contact your team administrator for the organization slug
  • 📋 Integration Methods

    1. Basic Integration

    The simplest one-line code integration:

    <script src="https://feedback-echo.com/widget/v1/[your-organization-slug].js?v=3.2&min=true"></script>
    

    Features:

    FeedbackEcho Embedded Widget Integration Guide - WCAG Pulse