I’m trying to load charts as images in a secured site. An example of a Google Chart image over https would be this:
http://www.google.com/chart?cht=lc&chs=200×125&chd=s:helloWorld
The problem is that while you can load an image like this by directly clicking the link, you can’t include it as an image in your page. It just won’t load.
Any idea on how to bypass this? Or solution generally using PHP?
Google does not support Charts over HTTPS …
I had the same problem.
http://groups.google.com/group/google-chart-api/browse_thread/thread/95c463d88cf3cfe4
You could however use PHP or .net to create a proxy page to filter your google HTTP link via a HTTPS connection to solve such a problem.
Here is a simple PHP proxy I’ve used …