Just got this e-mail from FB yesterday (see below). What if fails to give is letting us know which methods in this module are being removed soon. Does anyone happen to know which deprecated methods used by the module that will be removed?

Also, as a side question has anyone had any success with finding this "developer console" that FB is talking about? Or do they mean the JS console in the browser? I have yet to see any deprecated messages in the latter case.

Thanks!
------

As announced in the Facebook Developer blog https://developers.facebook.com/blog/post/2012/06/27/platform-updates--o..., Facebook is in the process of removing methods from the Javascript SDK that are not officially supported. Your app "****" has been identified as using such methods, and we are informing you about this now so that you can make the necessary changes to avoid your application being affected when we first make these methods into empty stubs, and subsequently when we remove them.
To find out which changes you need to make, please check the developer console while running your app, and validate against the official documentation https://developers.facebook.com/docs/reference/javascript .

-------

Comments

alex.pilon’s picture

I have also received this message and gone through my app with the developer console open and I have not seen any warnings being printed.

Has anyone seen the warning or know what it may pertain to?

l0rne’s picture

I've gotten as far as finding the depricated methods used in fbconnect.js:

FB.Dialog.create
FB.Dialog.show
FB.Dialog.remove

As far as I can tell, these will be replaced by FB.ui
https://developers.facebook.com/docs/reference/javascript/FB.ui/
But I'm having trouble figuring out how to use FB.ui to replace the FB.Dialog calls.

l0rne’s picture

There is a bit of code in fbconnect.js that is commented out. It might be meant to replace FB.Dialog.create

//  FB.XFBML.parse(dialog);

//  var popup = new FB.UI.PopupDialog(
//    oThis.options.title,
//    oThis.container,
//    oThis.options.showLoading,
//    oThis.options.hideUntilLoaded
//  );

but there isn't any indication of anything to replace FB.Dialog.show or FB.Dialog.remove

l0rne’s picture

Issue summary: View changes

Cleaned up the URL links.