Skip to content

Instantly share code, notes, and snippets.

@ezy
Created April 29, 2019 02:20
Show Gist options
  • Save ezy/c7b7ff0fd14dbaa738e8a44f79706295 to your computer and use it in GitHub Desktop.
Save ezy/c7b7ff0fd14dbaa738e8a44f79706295 to your computer and use it in GitHub Desktop.
CURL request to sentry without an SDK
# Replace <sentry_key>, <sentry-url> and <project-id> to formulate your CURL request. Don't forget to add a trailing slash to URL otherwise you'll get wierd CSRF errors!
curl -X POST --data '{ "exception": [{ "type": "$ErrorMessage"}] }' -H 'Content-Type: application/json' -H "X-Sentry-Auth: Sentry sentry_version=7, sentry_key=<sentry_key>, sentry_client=raven-bash/0.1" https://<sentry-url>/api/<project-id>/store/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment