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
Once the SDK has been initialized, tracking requests sent through the SDK
56
66
instance.
57
67
68
+
```php
69
+
require_once __DIR__ . '/vendor/autoload.php';
70
+
71
+
use SecureNative\sdk\SecureNative;
72
+
use SecureNative\sdk\SecureNativeOptions;
73
+
use SecureNative\sdk\EventTypes;
74
+
use SecureNative\sdk\SecureNativeContext;
75
+
76
+
77
+
$token = "[SECURED_CLIENT_TOKEN]";
78
+
$ctx = new SecureNativeContext($token, "79.179.88.157", null, (object)["user-agent" => "Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; en-us"], null, null, null);
0 commit comments