Hi everybody,
I've recently installed the fb oauth module, which is a very nice module, thank you!
I'm just having an issue when trying to map the facebook birthday with the birthdays module, which is not supported by default by fb oauth module. So I've started by overriding the method fboauth_field_convert_date() (I know it's not the good way of making changes, but I start there to track changes...) as I don't use the Date module. However, I don't understand how Birthdays wants me to communicate my values and even after reading the code of the module, I couldn't figure out how doing it.
So my question is : Did somebody already tried to use birthdays module with fb oauth? If not, do you know how I can discover the way the module wants me too talk to him?
Note, I've tried something very awful and not surprisingly not working :
$value = NULL;
$fbdate = explode('/', $fbuser->$facebook_property_name);
$value = array(
'day' => $fbdate[0],
'month' => $fbdate[1],
'year' => $fbdate[2],
);Thank you very much!