Hi Ameesh,Setting the referrer header in your JS code would be a
security issue, so it is not permitted by the browser (or in this case,
Cordova container).You can bypass the Referrer Filter by overriding your
app's user agent with a value that does not contain "Mozilla" or
"Opera", in effect indicating that these requests are not coming from a
browser. Place the following line in your app's config.xml, replacing
"Custom User Agent String" with the value you would like to
use:To see the exact ch...