01-06-2013 04:55 PM
I've gotten the Facebook example from the WebWorks samples working fine.
I want to instead of saying Hello 'name' ! display user's birthday instead.
So I change line 101 in oauth.js from ...
showMessage('Hello ' + data.name + '!');
to
showMessage('Hello ' + data.birthday + '!');
When I try this I get back undefined for birthday. How would I go about getting the user's birthday?
Solved! Go to Solution.
01-06-2013 05:27 PM