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
On iOS I do a Sentry.captureMessage and then Sentry.setEventSentSuccessfully properly, but on android, the request fails with the following error and Status 400:
{
"event_id": [
"Ensure this field has no more than 32 characters."
]
}
Request:
curl -X POST -H "authorization:Bearer+token" -H "content-type:application/json" https://sentry.io/api/0/projects/organization/myApp/user-feedback/ -d '{"event_id":"c90b8e81-1e0a-4a26-88f0-dd28a403a2a9","name":"Fulano","email":"my_email","comments":"Bug"}'
It seems like the event generated for iOS have the event_id dashes removed(it would be like c90b8e811e0a4a2688f0dd28a403a2a9) having less than 32 characters.
But on Android, it has the dashes and because of that, more than 32 characters.
I can send a custom id to the setEventSentSuccessfully, but the feedback message is not associated with the event, and i believe i should send the same id as the lastEventId, so, sending a custom id is not a solution, unless i could create an event with a custom id and then send the feedback with the same id.
I appreciate any help.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Platform:
SDK:
react-native-sentry
react-native
version: 0.59.10Init Code:
I have following issue:
On iOS I do a Sentry.captureMessage and then Sentry.setEventSentSuccessfully properly, but on android, the request fails with the following error and Status 400:
Request:
Request params:
It seems like the event generated for iOS have the event_id dashes removed(it would be like c90b8e811e0a4a2688f0dd28a403a2a9) having less than 32 characters.
But on Android, it has the dashes and because of that, more than 32 characters.
I can send a custom id to the setEventSentSuccessfully, but the feedback message is not associated with the event, and i believe i should send the same id as the lastEventId, so, sending a custom id is not a solution, unless i could create an event with a custom id and then send the feedback with the same id.
I appreciate any help.
The text was updated successfully, but these errors were encountered: