You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/product/user-feedback/index.mdx
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ Feedback collected via the Feedback Widget may have some or all of the following
28
28
29
29
## Crash-Report Modal
30
30
31
-
Another way to collect feedback is by installing the Crash-Report Modal. This allows users to submit feedback after they experience an error via an automatic modal that pops up after an error occurs. Learn more about how to install and customize it [here](https://docs.sentry.io/platforms/javascript/enriching-events/user-feedback/#embeddable-javascript-widget).
31
+
Another way to collect feedback is by installing the Crash-Report Modal. This allows users to submit feedback after they experience an error via an automatic modal that pops up after an error occurs. Learn more about how to install and customize it [here](https://docs.sentry.io/platforms/javascript/user-feedback/#crash-report-modal).
@@ -39,6 +39,10 @@ Feedback collected via the Crash-Report Modal will have the following informatio
39
39
- URL of the page the user was on when they submitted the feedback
40
40
- Tags
41
41
42
+
## User Feedback API
43
+
44
+
We also provide an API to send user feedback programmatically. This allows you to connect your own user interface to Sentry. For more details, see the [set up guide](/product/user-feedback/setup/#supported-sdks-for-user-feedback-api).
45
+
42
46
## Where to View User Feedback
43
47
44
48
Whether you choose to collect user feedback via the Feedback Widget, the Crash-Report Modal, or both, you’ll be able to view it from the **User Feedback** page. The page is chronologically-organized with the most recent, unresolved feedback at the top. You can click on individual feedback to see more details all in one view, similar to your e-mail inbox. The right-hand side shows the **User Feedback Details** view, which includes the user’s description and any available debugging context.
Copy file name to clipboardExpand all lines: docs/product/user-feedback/setup.mdx
+27-18Lines changed: 27 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,10 @@ sidebar_order: 12
4
4
description: "Get started with Sentry's User Feedback, which allows you to collect feedback from your users."
5
5
---
6
6
7
-
With User Feedback, you can collect feedback from your users via two methods: a Feedback Widget that can be displayed anywhere in your web application and/or a Crash-Report Modal that appears when your users are experiencing crashes.
7
+
With User Feedback, you can collect feedback from your users via three methods:
8
+
1. A Feedback Widget that can be displayed anywhere in your application (various SDKs and loader script)
9
+
2. A Crash-Report Modal that pops up automatically when your users experience a crash (HTML script)
10
+
3. An API that you can attach to your own interface (various SDKs and web API)
8
11
9
12
To get instructions for how to set it up and start collecting feedback, click a link for one of the supported SDKs below.
10
13
@@ -35,20 +38,26 @@ The Sentry SDK that injects the Feedback widget runs on the client's browser, an
The Crash Report Modal allows users to submit feedback after they experience an error, via an automatic modal that pops up after an error occurs. This is done by adding a script tag to your HTML template.
We also provide an API to send user feedback programmatically. This allows you to connect your own user interface to Sentry. If your SDK is not supported, you may post data to the [Web API](https://docs.sentry.io/api/projects/submit-user-feedback/).
0 commit comments