0

Android アプリケーションから友人の Facebook ウォールにテキスト メッセージを投稿したいだけです。ここでは、友人のリストを一覧表示し、送信する必要がある特定の友人 ID を取得しました。以下は私のコードです。

        facebook = new Facebook("My App Id");
        asyncRunner = new AsyncFacebookRunner(facebook);
        FaceBook.facebook.authorize(this, new String[] { "user_status", "user_about_me", "email", "publish_stream", "read_stream", "offline_access" }, new DialogListener() {

            @Override
            public void onComplete(Bundle values) {

                JSONObject jObject;
                try {
                    jObject = new JSONObject(FaceBook.facebook.request("me"));
                    Bundle params = new Bundle();
                    params.putString("message", "My message");
                    params.putString("target_id","My friend fb Id here"); 
                    params.putString("method", "stream.publish");

                    //String  response = authenticatedFacebook.request(params);
                    FaceBook.asyncRunner.request("me/feed", params, "POST",
                            new ProductUploadListener(), null);
                    Toast.makeText(getApplicationContext(), "Successfully post..", Toast.LENGTH_SHORT).show();

                } catch (MalformedURLException e) {

                    e.printStackTrace();
                } catch (JSONException e) {

                    e.printStackTrace();
                } catch (IOException e) {

                    e.printStackTrace();
                }
            }

            @Override
            public void onFacebookError(FacebookError error) {
                Toast.makeText(fbFriendsList.this,
                        "Facebook onFacebookError", Toast.LENGTH_LONG).show();
            }

            @Override
            public void onError(DialogError e) {
                Toast.makeText(fbFriendsList.this, "Facebook onError",
                        Toast.LENGTH_LONG).show();
            }

            @Override
            public void onCancel() {

            }
        });


    }
    public class ProductUploadListener extends BaseRequestListener {
        public void onComplete(final String response, final Object state) {



        }
    }

私が間違えたところ.私はアンドロイドfacebook SDKも使用しました。

ありがとう。

4

1 に答える 1

0

どうぞ

protected void postOnWall(String friendID)
{
    Bundle params = new Bundle();
    params.putString("message","put your message here");
    params.putString("caption", "put your caption here");
    params.putString("description", "Put your description here");
    params.putString("name", "put a name here");
    params.putString("picture", "URL of picture");
    params.putString("link", "If any link);        

    asyncRunner.request(((friendID == null) ? "me" : userId) + "/feed", params, "POST", new WallPostRequestListener(),null);       
}
于 2012-06-15T05:56:54.947 に答える