I would like to build a metro application in Windows 8 to be syncronize with Facebook. I would like to send notification to a friend. The notification should to be sent by Facebook to my Server and my server should present a message when the user will click on the notification message. I need to send from Facebook to my server only the user name and the id.
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 Notification request.
function sendNotification() {
var uid = facebookUser.id;
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 +"?userId="+ uid + "&template=" +notificationContent + "&method=POST&format=json";
request.open("GET", str, false);
request.send();
var response = request.responseText;
}
The notification has been sent but when the user click on the notification he got only a jsp page with the username and null. I don't understand what am i doing wrong?
The jsp page looks like this:
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<%
String userFullName = request.getParameter("name");
String userName = request.getParameter("userName");
String imgPath = "https://graph.facebook.com/" + userName + "/picture";
String str = request.getQueryString();
int a = 5;
%>
<h1> You have received an invitation from <%= userFullName %> </h1>
<img src="<%= imgPath %>" width="50" />
</body>
</html>
The page shows only the username but no the picture.
I think that maybe i don't send properly the parameters in my notification request to Facebook :
"&href=?name=" + facebookUser.name +"?userId="+ uid
Thanks