---
title: Troubleshooting information
description: The following information addresses technical situations you might encounter after setting up the TruValidate Integration Kit:
component: truvalidate
page_id: truvalidate:troubleshooting:pf_truvalidate_ik_troubleshooting_info
canonical_url: https://docs.pingidentity.com/integrations/truvalidate/troubleshooting/pf_truvalidate_ik_troubleshooting_info.html
llms_txt: https://docs.pingidentity.com/integrations/truvalidate/llms.txt
docs_for_agents: https://developer.pingidentity.com/build-with-ai/docs-for-agents.md
revdate: August 15, 2025
---

# Troubleshooting information

The following information addresses technical situations you might encounter after setting up the TruValidate Integration Kit:

| Situation                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | Recommendation                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Using TruValidate with PingFederate results in the following error:`truvalidate_device_profiling.js:5 Refused to load the script 'https://mpsnare.iesnare.com/general5/xz1wcI_mlev7ZyvfJj94rYhbKk9av1rsH3sDg5_JGsQ/wdp.js?loaderVer=5.2.2&compat=false&tp=true&tp_split=false&fp_static=true&fp_dyn=true&flash=false' because it violates the following Content Security Policy directive: "script-src 'self' 'nonce-6Uzh6NlXESurUeLj'". Note that 'script-src-elem' was not explicitly set, so 'script-src' is used as a fallback.` | Update the HTML form template in `$PF_HOME/server/default/conf/templates`.HTML pages implementing ContentSecurityPolicy restrictions might require updates to the `script-src` and `image-src` CSP settings when adding the `truvalidate_device_profiling` JavaScript file to the page. Update `script-src` and `img-src` to include the `https://mpsnare.iesnare.com` host name.For example, PingFederate has default templates with strict CSP settings. To use the `truvalidate_device_profiling` JavaScript file with the default templates, update the following line in the template's CSP settings:```
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'nonce-$CSPNonce'; style-src 'self'; img-src 'self'; font-src 'self';" />
```Updated line:```
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline' https://mpsnare.iesnare.com; style-src 'self'; img-src 'self' https://mpsnare.iesnare.com; font-src 'self';" />
``` |
