Thanks for the nice module. We are currently building sites in which the Facebook account is part of the user profile content type (using Content Profile), and I am looking into ways of integrating a CCK field with the Fbconnect module, so it is easy and straightforward for the user to enter his or her Facebook account details. One of the ways I am considering is to have a "social" CCK field (much like emfield) that contains this data, and have modules like Fbconnect use this data. I have written this up in more detail here: http://groups.drupal.org/node/26157
What do you think about this approach? Would this be considered for integration with this module?
Comments
Comment #1
Anonymous (not verified) commentedI think integrating with Content Profile is quite a major feature for Facebook Connect. I have used Facebook Connect with Core Profile by simply adding this code fbconnect.pages.inc (You will notice I pulling in the following user data, First Name, Last Name, Country, Gender, this method works for both the Facebook Fast Registration and Standard Registration):
However, I think for connecting with facebook fields with Content Profile it would be much more useful designing an admin interface that allows administrators to link cck fields with available facebook fields. Because, if you were to just create one social cck field that imports all data, it's not going to provide the flexibility most people would need when working with individual field values.
Is anyone interested in working on this? Are there any plans for integration with Facebook Connect Module and Drupal Profiles?
Comment #2
rf-pldev commentedJust note that most of the data retrieved from FB this way would need to be refreshed every 24 hours and can't be used to get around FB display rules (i.e., you can't show any of my personal data you got from FB to people who aren't my FB friends -- except for some allowable public "Storable Data", which is very minimal). You could use cron to refresh the data as has been mentioned in other issues for this module, but that still doesn't allow you to show that info to everyone.
So while I think that using FB Connect for registration can be valuable, you don't want to break the TOS for some fairly minor benefit. Of course, in reality you can do whatever you want and most likely nobody will be the wiser, but I wouldn't recommend building a drupal.org hosted module that breaks a 3rd-party TOS.
some reference:
http://wiki.developers.facebook.com/index.php/Storable_Information
http://developers.facebook.com/news.php?blog=1&story=234
http://www.facebook.com/help.php?page=888
http://wiki.developers.facebook.com/index.php/Talk:Storable_Data
Comment #3
gallamine commentedIs there any update on this issue? Content Profile has around 15,000 users, so it would be a good module to play nicely with.
Comment #4
vectoroc commentedComment from author of fbconnect module