Is there a way to get facebook public info from name? -
is there way if provide name and/or company name user's facebook details
eg : if enter name "john dropes" related public info(eg : birthday,location etc) of users name.
i not going use facebook username or id should able info name.
you can use search list of users:
/search?q=john%20doe&type=user
this return list of users match name more or less closely:
{ "data": [ { "name": "john doe", "id": "7688817164415" }, { "name": "rubén doe", "id": "3650636703421" }, ... ] }
you can issue request id
of individual users:
/7688817164415
this give info. aware standard info set narrow.
Comments
Post a Comment