I installed the ebay module m2pro but it doesn't work properly due to the magento csp policy, here some screenshot:
screen 1
I noticed that 2 scripts are blocked:
screen 2
screen 3
screen 4
How I can solve this problem without disabling CSP? Thanks
You have to add domain to CSP whitelist: https://devdocs.magento.com/guides/v2.3/extension-dev-guide/security/content-security-policies.html#add-a-domain-to-the-whitelist
For images you can add this: <value id="[ID]" type="host">https://</value>
<value id="[ID]" type="host">https://</value>
All images from https won't be block.
Copyright © 2021 Jogjafile Inc.
You have to add domain to CSP whitelist: https://devdocs.magento.com/guides/v2.3/extension-dev-guide/security/content-security-policies.html#add-a-domain-to-the-whitelist
For images you can add this:
<value id="[ID]" type="host">https://</value>
All images from https won't be block.