3

restfb を使用してウォールにメッセージを投稿するにはどうすればよいですか?

私はこのコードを使用しています

    PostData(String accessToken) {
      facebookClient = new DefaultFacebookClient(accessToken);
 }
     void runMessage() {
            String messageId = publishMessage();
     }
 String publishMessage() {
    System.out.println("* Feed publishing *"); 
    FacebookType publishMessageResponse = facebookClient.publish("me/feed", FacebookType.class, Parameter.with("message", "RestFB test"),Parameter.with("link", "http://www.google.com"));
4

2 に答える 2

0

あなたのコードは私とうまく動作します。パーミッションに publish_stream パーミッションを追加しましたか?

詳細については、こちらを参照してください。

于 2012-04-26T20:28:39.747 に答える
0

このコードは私にとってはうまくいきます:

static final String MY_ACCESS_TOKEN;

static{MY_ACCESS_TOKEN  = 

/*

login to facebook then copy your access token from "https://developers.facebook.com/tools/explorer?method=GET&path=605545976%3Ffields%3Did%2Cname" and paste it here

*/}

//-------

FacebookClient facebookClient = new DefaultFacebookClient(MY_ACCESS_TOKEN);

void post(String message){
facebookClient.publish("me/feed",FacebookType.class,Parameter.with("message",message));
}
于 2013-04-16T13:30:51.513 に答える