I am working in an application which uses facebook connect to fetch a user’s profile picture. But after the connection is made I still have to be able to crop and resize the “large” image. Therefor I want to download the profile picture from the facebook server to my own server.
As of now I am not able to download the picture to my server. Here is what I am doing:
- The facebook profile picture get sync in our application from facebook with the following path http://graph.facebook.com/uid/picture?type=large
- Now we need the image to be get saved locally from the URL mentioned above
- Crop it and display it, but we are unable to save the image from the provided URL
Question
• So how we can save the facebook profile picture in our server using this path http://graph.facebook.com/uid/picture?type=large?
• Or what is the other solution to save facebook profile? Picture to be save in our server first before displaying it?
• How do we still keep it in sync with facebook if we use the saved picture?
Then I have another question:
How do you delete the cookies for a once established facebook connect connections if a user does not want to use facebook connect no more?
If have tried to do this with the following code but no results:
var api_key = "135xxxxxxxxxxx";
var channel_path = ""+2;
FB.init(api_key , cookie:false, channel_path, { "ifUserConnected": update_user_box });
Function update_user_box(){
Var fbId=FB.Connect.get_loggedInUser();
The code given above to delete the false cookie is not working. What do I have to do to resolve this issue?