我有一个 Facebook 应用程序,可以将她的回复发送到我的服务器硬编码。我的服务器是一个 tomcat 接收响应(Facebook 通知)。
我希望使用我的应用程序的用户会收到通知,当他点击通知时,他会从我的服务器收到 index.jsp 页面。
我发送通知并添加了我想使用的 href,我的服务器收到:
var messageToSend = "https://graph.facebook.com" + id + ... +
+**"&href=?username=" + userName + "&userid="+ userId** + "&template=" +
notificationContent + "&method=POST&format=json";
我想在服务器端获取 userId 和 userName。
在服务器端,我写道:
String userName = request.getParameter("username");
String userId = request.getParameter("userid");
我得到了用户名,但用户 ID 为空。
我应该如何向我的服务器发送多个参数?