Google request from remote swf

I am trying to return a Google Places request with this code. It works in preview testing, but will not return results when the swf is remotely hosted. I know swfs have security measures in place when it comes to importing data.

Is this possible with Flash?

var googleSearchArray:Array = new Array();
var jsonGoogleRequest:URLRequest = new URLRequest(“https://maps.googleapis.com/maps/api/place/search/json?userip=63.98.25.109&location=33.006688,-96.703257&radius=40233.6&name=symon&sensor=false&key=AIzaSyB_u-ehd2WBol6-JqZjxmaQoSc2S3y75XY”);
var jsonGoogleLoader = new URLLoader();
jsonGoogleLoader.addEventListener(Event.COMPLETE, onGoogleload);
jsonGoogleLoader.load(jsonGoogleRequest);

    function onGoogleload(evt:Event):void {
    var jsonGoogleSearch: Object = JSON.decode(jsonGoogleLoader.data);
    
    for (var i:int = 0; i < jsonGoogleSearch.results.length; i++) 
        {
            
        googleSearchArray.push("https://maps.googleapis.com/maps/api/place/details/json?reference="+jsonGoogleSearch.results*.reference+"&sensor=true&key=AIzaSyB_u-ehd2WBol6-JqZjxmaQoSc2S3y75XY");
        trace(googleSearchArray*)
        }

}