我在图形 api 上使用 as3 发出请求。
例如,我请求这个 url。
http://graph.facebook.com/100001217469714/picture
但我被重定向到这个网址。
http://profile.ak.fbcdn.net/hprofile-ak-snc6/274715_100001217469714_1254733069_q.jpg
我想将此重定向的 url 作为字符串获取到我的 AS3 代码。
我该怎么做?
我这样做是因为我正在将个人资料图片从 Facebook 加载到我的游戏中。但我必须发现用户是否上传了照片或有 facebook 预定义的照片。
var url : String = 'http://graph.facebook.com/'+id+'/picture?width=100&height=100';
var urlRequestPicture : URLRequest = new URLRequest(url);
urlRequestPicture.method = URLRequestMethod.GET;
var loaderPicture : Loader = new Loader();
loaderPicture.contentLoaderInfo.addEventListener(Event.COMPLETE, onCompletePicture);
loaderPicture.load(urlRequestPicture);
function onCompletePicture(e:Event){
var bitmap:Bitmap = e.target.content;
bitMapArray.push(bitmap);
}