I am building a metro application in Windows 8 and i want that it will syncronize with Facebook. I would like to present the picture in my jsp file. The jsp file will be presented after the user will click on the facebook notification he recieved.
When i asked only the name of the user i succeeded but when i ask the profile picture i face on obstacles.
I created a XMLHTTPRequest for Facebook and Facebook sends me as a response "JFIF".
function getFacebookPicture(facebookUser) {
var request = new XMLHttpRequest();
var str = "https://graph.facebook.com/" + facebookUser.id + "/picture";
request.open("GET", str, false);
request.send();
var response = request.responseText;
return response;
}//getPic()
response = "JFIF".
i got it and send the notification.
function sendNotification2() {
var uid = facebookUser.id;
var picture = getFacebookPicture(facebookUser);
var request = new XMLHttpRequest();
var appID = "XXXXXX"; // the app id
var appSecret = "YYYYYYYY"; // the app secret
var notificationContent = "YO yo yo"; // the message on the notification.
var str = "https://graph.facebook.com/" +
uid + "/notifications?access_token=" +
appID + "|" + appSecret + "&href=?name=" + facebookUser.name +"?picture="+ picture + "&template=" +notificationContent + "&method=POST&format=json";
request.open("GET", str, false);
request.send();
var response = request.responseText;
}
The error i got is
{
"error": {
"type": "OAuthException",
"message": "An access token is required to request this resource."
}
}
I added to my app the permissions : read_friendlists,manage_notifications,publish_stream,offline_access,user_photos when i log in.
So how can i get the picture?
Thanks.