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
Original issue reported on code.google.com by
seansu...@gmail.com
on 31 Jul 2009 at 9:25