Send Events without SDK

Any way to send events without an SDK? Just a POST endpoint?

I am in Unity/C# but am building an SDK of my own and thus do not want the dependency nor do I want to cross wires with any sentry sdks that could also be embedded in the same project.

Sentry’s legacy SDK for Unity could serve as an example: GitHub - getsentry/sentry-unity-lite: A lightweight, pure C# 6 SDK for Unity
It’s plain C# 6 hooked into the Unity error logger.

That said, we don’t recommend capturing errors from within SDKs in apps that you do not own. Meaning, if you’re building an SDK that will be used by applications which you’re not responsible for, without consent of the application developer.

1 Like