Can facebook registration plugin also store display picture of the user who is registering along with the other details into a mysql database?
If yes, does anyone knows how to ?
|
Can facebook registration plugin also store display picture of the user who is registering along with the other details into a mysql database? If yes, does anyone knows how to ? |
||||
|
|
All you really need is the users ID. With that you can simply place an
The users public profile picture should be displayed.
You don't need to use that plugin in order to retrieve users profile pictures. You can use any other means you feel comfortable with to obtain that data. There are many options in many languages. Any Language that can perform HTTP requests can achieve the same results. For simplicity I will demonstrate with the JavaScript SDK - If you are following along, you should know that the SDK requires the existence of a
On to the JavaScript -
The browser should alert you with the URL to the users profile picture. |
||||
|
|