I want to enable certain features only for users with the "publish_actions" permission and Timeline. How can I detect if the user enabled Timeline?
|
|
|
Currently there is no API way to check if user have enabled timeline. You can try to use "Add To Timeline (beta)" social plugin (passing Subscribe to This however have some downsides:
|
|||
|
|
|
1) A partial solution is to check if user has a album named "cover photos". Although not all but MOST users who would have activated timeline would have this album!! 2) A sure way is to actually retrieve html contents of a user's profile and check if it has a timeline!! |
||||
|
|
|
Eventually (likely in the near future) everyone's profile will be rolled over to Timeline, so it would seem facebook has not provided a reliable way to detect a timeline-enabled app. |
|||
|
|
|
The following potential solution requires no additional permissions request. If you add the Facebook timeline plugin code within a concealed DIV you can wait until after the FB Canvas is done loading (or xfbml in web pages) and test the CSS height of that element. If the user does not have Timeline it will be 0px. Otherwise, it will be 250px (as I've included it). This only works within Facebook Apps (not in Facebook integrate web pages): Facebook hides this plugin element if the user has not activated timeline by setting the element style height to 0. Add this to your App page:
Then, in your javascript (this use jQuery, FYI):
The following for Web Integration is somewhat less reliable due to potential network latency, but the concept could be modified to some workable solution: Since FB.Canvas.setDoneLoading is not called on a website that includes FB integration, modify the FB.Canvas.setDoneLoading function above to subscribe to the xfbml.render action and put a timeout on the test: window.fbAsyncInit = function () { FB.init({ ... }); // after your FB.init code
}; I've found in my testing that moving the FB.Event.subscribe('xfbml.render', into a $(document).ready(function() { ... }); helps with latency when your app is embedded in a Facebook page (takes a little longer to load). Just started testing this out, so it may or may not hold up to further testing. |
|||
|
|