0

我需要将提要条目发布到我的 FansPage。为此,我使用了以下代码,

userClient = new FacebookXmlRestClient(api_key, secret);
if(userClient.users_hasAppPermission(Permission.OFFLINE_ACCESS, longFacebookUserID)){
    TemplatizedAction action = new TemplatizedAction("{actor} recommends {book}");                     
    action.setPageActorId(ctProfileId);//fansPageId
    action.addTitleParam("book", "<a href='http://www.amazon.com/Hamlet/dp/0140714545/'>Hamlet</a>");   
    action.setBodyTemplate("{actor} is using BooksApp!");                                               
    action.setBodyGeneral("100 other people recommend this book!");                                     
    action.addPicture("http://code.google.com/hosting/images/code_sm.png", "http://www.google.com"); 
    userClient.feed_PublishTemplatizedAction(action);}

当我执行此代码时,feed_PublishTemplatizedAction() 返回 true 但未发布在我的 FansPage 上。

谁能给我指导方针。

谢谢,杰瑞。

4

1 回答 1

0

Feed 模板已被弃用,不再有效。您应该阅读 Feeds / Stream publishing。此外,您应该远离 REST API 并改用 Graph API。您的应用程序和代码出现大量过时。

您可以使用“/me/feed”API 调用发布到用户墙。

于 2012-08-13T13:59:31.810 回答