# Verification and Debugging

Once installed, verifying the integration is the final step before deployment. Signet provides transparency into its operation to assist with this process.

#### The Network Inspector

Open your browser's Developer Tools and navigate to the Network tab. Filter the requests by signet. Upon loading your application, you should see an immediate POST request to our ingestion endpoint.

* **Status 200/202:** The event was successfully captured and queued for processing.
* **Status 401/403:** Check your Site ID. The domain you are testing from may not be authorized in your dashboard settings.

#### Real-Time Dashboard

The most definitive test is the Real-Time view in your Signet dashboard. Navigate to the "Live" tab. Open your website in a new incognito window. You should see your active session appear within seconds. If you navigate between pages, the dashboard will reflect these changes near-instantly, confirming that the router integration is functioning correctly.

#### Console Debugging

During implementation, you can enable verbose logging to see exactly what the SDK is doing.

```
 code Tsx
downloadcontent_copy
expand_less
<SignetProvider debug={true} />
```

With debug mode active, Signet will print structured logs to the browser console. This includes lifecycle events such as Signet Initialized, Page View Captured, and Event Payload Sent. This is invaluable for troubleshooting custom events or verifying that properties are being passed correctly.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.signtoken.vip/3.-implementation/verification-and-debugging.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
