Why add feedback to React Native apps?
TellTide’s web widget does not run inside React Native, and it does not need to: your own screen posts JSON to one endpoint, and submissions land in the same inbox as your web feedback.
Step 1: Create a TellTide app and copy your App ID and API key
Sign in to TellTide, open Apps, and create an app with the Mobile App or Desktop App platform label. Copy the App ID and the API key shown at creation. Native apps authenticate with the API key (an x-api-key header) instead of the website origin check, so store the key securely — an environment variable, secure storage, or your backend.
Step 2: Post feedback with fetch
Build a small feedback screen (type picker, comment box, optional email) and submit it to the feedback endpoint:
await fetch('https://telltide.com/api/feedback', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': TELLTIDE_API_KEY,
},
body: JSON.stringify({
appId: TELLTIDE_APP_ID,
type: 'bug', // 'feedback' | 'review' | 'feature'
name: user.name,
email: user.email,
comment: text,
page_url: 'myapp://checkout',
page_title: 'Checkout',
}),
});Step 3: Verify the submission in your inbox
Send a test request and check the response for a feedbackId. The submission appears in your TellTide inbox immediately, tagged with the page_url and page_title context you sent — use those fields for the screen name, route, or deep link the user was on.
Good to know
- Proxy the request through your backend if you prefer not to ship the API key in the app binary.
- Use page_url for the deep link or route name — it becomes the context your team sees during triage.
- The type field maps to inbox categories: feedback, review (with a 1–5 rating), bug, and feature.
Common questions
Can I show the web widget in a WebView instead?
A native form posting to the API is the better experience — no WebView weight, works offline-queued if you add retry, and matches your app’s design. The API accepts the same fields the widget sends.
Is there a native TellTide SDK for React Native?
No SDK is required — the API is one JSON POST with two IDs, small enough that a wrapper library would be more code than the integration itself. Your HTTP client of choice already does the job.
Is the feedback public?
No. Every submission lands in your private TellTide inbox first. You choose which feature requests to publish to your public roadmap, where users can vote and comment.
How much does TellTide cost?
The free plan includes the widget, private inbox, API, and public roadmap for one app. Paid plans add unlimited apps and advanced features — pricing never scales with how many users you have.
