ReactifySDK · Getting started
Recommended path matches WordPress: set reactifyWprtEmbed.apiKey before reactify.js, then embed a concrete thread id so "React To This" opens an in-page modal.
- Bootstrap apiKey + embed thread (in-page popup)
Replace
YOUR_PUBLISHABLE_API_KEYandYOUR_THREAD_IDfrom the dashboard. Base ishttps://api.reactionsaas.com.Recommended install<script> window.reactifyWprtEmbed = { base: "https://api.reactionsaas.com", apiKey: "YOUR_PUBLISHABLE_API_KEY" }; window.reactifyShopifyEmbed = window.reactifyWprtEmbed; window.REACTIFY_EMBED_BASE = "https://api.reactionsaas.com"; </script> <script src="https://reactify-cdn.s3.us-east-2.amazonaws.com/reactify.js?v=1.1.34" defer></script> <reactify-thread thread="YOUR_THREAD_ID" data-base="https://api.reactionsaas.com"></reactify-thread> - Verify the popup
In DevTools:
window.reactifyWprtEmbed?.apiKeyis set, and "React To This" is a button (not a link tohttps://api.reactionsaas.com/reactify/record). - View-only / template preview (optional)
Script without
apiKeystill shows the thread, but CTAs leave the page. Prefer the recommended snippet above for production.View-only template<!-- View-only: without apiKey, React To This opens https://api.reactionsaas.com/reactify/record --> <script src="https://reactify-cdn.s3.us-east-2.amazonaws.com/reactify.js?v=1.1.34" defer></script> <reactify-thread template="hot-takes"></reactify-thread> - Verify telemetry
The embed posts analytics to
POST /api/reactify/events. See Event schema.