facebook.request("me") default data on fb api v2.4

Just a heads up to anyone with apps that utilize the facebook api. If your facebook app is built on api v2.4, the default facebook.request(“me”, “GET”) call will now only return the user id and name fields, where as on v2.3 and lower you’d get a bunch of other stuff like gender, verified account, etc.

If you still need some of that initial data on the request call, you must declare the desired fields in a params table, i.e. facebook.request(“me”, “GET”, { fields=“id,first_name,last_name,email” } ).