bertrando / facebook-actionscript-api

Automatically exported from code.google.com/p/facebook-actionscript-api
0 stars 0 forks source link

callRestAPI callback response is null for IE8 #198

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
protected function setCount(event:MouseEvent):void {
            result.appendText("setCount started\n");
            Facebook.callRestAPI("dashboard.setCount", checkCount, { count:int(inputCount.text), uid:user_id }, "POST");
        }

        protected function checkCount(response:Object, fail:Object):void {
            result.appendText("checkCount started\n");
            result.appendText("check response : " + response + "\n");
            if (response) {
                result.appendText("got response\n");
                Facebook.callRestAPI("dashboard.getCount", getCount, { uid:user_id }, "GET");
                Facebook.callRestAPI("dashboard.multiGetCount", getMultiCount, { uids:[606604136, 100001307196523] }, "GET");
            }
        }

What is the expected output? What do you see instead?
refer chrome.jpg and IE.jpg

What version of the product are you using? On what operating system?
latest version in windows xp

Please provide any additional information below.

Original issue reported on code.google.com by kambing8...@gmail.com on 28 Oct 2010 at 2:33

Attachments:

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
this is the error msg [IOErrorEvent type="ioError" bubbles=false 
cancelable=false eventPhase=2 text="Error #2032"]

Original comment by kambing8...@gmail.com on 3 Nov 2010 at 4:08

Attachments:

GoogleCodeExporter commented 9 years ago
The api has gone through several revisions, is this still an issue with the 
latest api?

Original comment by edwar...@gmail.com on 25 Oct 2011 at 8:10