我正试图让这个工作。这是我向单个用户发送应用程序到用户通知的实用方法。不需要会话 id。
public Collection<String> notifyUser(String user, String msg) throws FacebookException
{
FacebookJsonRestClient fbkClient = new FacebookJsonRestClient(FacebookUtil.appApiKey, FacebookUtil.appSecret);
List<Long> recipients = new ArrayList<Long>();
recipients.add(new Long(user));
return fbkClient.notifications_send(recipients, msg, true);
}
我正在尝试使用我的用户 ID。我从来没有收到通知,返回的集合是空的(应该是有效通知的用户列表)。
我可能做错了什么?