I have a SilverLight application which throws 开发者_如何学运维a security exception when running on FireFox for Macs. The exact same application works fine on Windows (Internet Explorer, FireFox, Chrome, Opera) and on Safari for Macs.
I am using the Facebook Developer Toolkit available on Codeplex.
The exception is thrown when the user launches the App. At that time I use the SilverLight Facebook API to run some queries using:
facebookAPI.Fql.MultiqueryAsync(queries, QueryAppUsersCompleted, dispatcher);
In my callback function QueryAppUsersCompleted
, the FacebookException does not evaluate to null, and its innerException
property has a SecurityException in it.
Any help would be tremendously appreciated.
In case someone else runs into this, this has now been fixed with the latest Facebook Developer Toolkit.
精彩评论