I am facing an issue with my server running over https, but I need to access a resource on an external site that is only available via http.
I tried using the $resource setup:
var tableDefintion = $resource('http://www.externalsite.org/xx/info.php',
{
param: '@data'
}
However, when making a resource request, I encounter the "Mixed Content" message and it does not load.
I attempted adding $sceDelegateProvider.resourceUrlWhitelist to the angular config function, even setting it to ['**'], but it did not solve the issue.
This resource is utilized within a service - are there any other solutions to bypass this problem?
Thanks.