MAXSTEELTURBOGO / facebook-actionscript-api

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

GetRegisteredTemplateBundleData not properly reflecting returned XML values from GetRegisteredTemplateBundles #66

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Register 2 or 3 template bundles
2. Call GetRegisteredTemplateBundles
3. On event complete callback, view value of event.data

What is the expected output? What do you see instead?
Expected output would reflect multiple entries in the object for each
template, the correct values are reflected in the Raw data that is returned
from the service call. It looks as though when parsing the xml return into
the GetRegisteredTemplateBundleData, the only the oldest template_bundle_id
is accessible.  Also the value for one line stories or action links do not
appear in this data object.

What version of the product are you using? On what operating system?
Version 3.2 on Windows and Linux

Please provide any additional information below.
When accessing return data parsed into GetRegisteredTemplateBundleData
object, not all data from XML is visible.

var call:FacebookCall = fbook.post(new GetRegisteredTemplateBundles());
call.addEventListener(FacebookEvent.COMPLETE, setTemplateBundleId);

function setTemplateBundleId(event:FacebookEvent):void{
if(event.success = true){
    var responseData:GetRegisteredTemplateBundleData = event.data as
GetRegisteredTemplateBundleData;
    }
}

Value in question is that of responseData above.

Original issue reported on code.google.com by seansu...@gmail.com on 31 Jul 2009 at 9:25

GoogleCodeExporter commented 9 years ago
New release based of Facebook's Graph API is coming soon.  SDK which this issue 
depends on is no longer supported by Facebook.

Original comment by alan...@gmail.com on 29 Sep 2010 at 7:49