0

我正试图让这个工作。这是我向单个用户发送应用程序到用户通知的实用方法。不需要会话 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。我从来没有收到通知,返回的集合是空的(应该是有效通知的用户列表)。

我可能做错了什么?

4

2 回答 2

0

从 Facebook 应用程序禁用的通知

于 2010-03-10T20:15:07.317 回答
0

REST API 已弃用。您应该使用更新的技术来发送“邀请”。

以下是向用户发送应用请求的方法:https ://developers.facebook.com/docs/reference/dialogs/requests/

但是您最好使用此处描述的新对象/操作:

http://developers.facebook.com/docs/opengraph/tutorial/

于 2012-01-24T00:21:43.640 回答