0

私は Facebook SDK を使用しており、自分のウォールにメッセージを投稿したいと考えています。インターネットを耕してから 2 日近く経ちましたが、問題を見つけることができませんでした。私がしたことを言わせてください。

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Log.i(TAG, "Try to create activity...");

        // Close activity if app id is not specified.
        if (FACEBOOK_APPID == null  ||  FACEBOOK_APPID == "") {
            Log.e(TAG, "Facebook Applicaton ID must be specified before running this screen.");
            closeActivity();
        }

        // Getting extra info which is passed by caller activity.
        // If we are here by mistake(Caller didn't send required parameter) close activity.
        Bundle extras = getIntent().getExtras();
        if(extras == null) {
            Log.i(TAG, "No data passed to this activity. Activity closed.");
            closeActivity();
        }
        // Get Message
        message = extras.getString("FB_WALLPOST");
//        Log.i(TAG, "message>>> " + message);


        mFacebook = new Facebook(FACEBOOK_APPID);
        mAsyncRunner = new AsyncFacebookRunner(mFacebook);

        SessionStore.restore(mFacebook, this);
        SessionEvents.addAuthListener(new SampleAuthListener());
        SessionEvents.addLogoutListener(new SampleLogoutListener());

//        mFacebook.dialog(FacebookActivity.this, "feed", params, new SampleDialogListener());

        Thread thread = new BasicThread();
        thread.start();

    }

私の調査に基づいて、Facebook.dialog使用できないことがわかりました。そのため、コメントアウトされています。Facebook.requestまた、その代わりに使用する必要があることもわかりました。Note that this method blocks waiting for a network response, so do not call it in a UI thread.SDKでの実装で見つけました。したがって、投稿プロセスを処理する別のスレッドを作成しました。

スレッドが開始されると、次のメソッドが呼び出されます。

public class BasicThread extends Thread {
    public void run() {
        try{
            Bundle parameters = new Bundle();
            parameters.putString("message", "Text is lame. Listen up:");
            parameters.putString("name", "Name");
            parameters.putString("link", "http://www.google.com");
            parameters.putString("caption", "Caption");
            parameters.putString("description", "Description");

            String  response = mFacebook.request("me/feed",parameters,"POST");
            Log.v("response", response);
        }
        catch(Exception e){}
    }
}

このコードを提案した人々は、この方法がうまく機能すると言われました。しかし、なぜそれが私にとってうまくいかないのか分かりません。

logcat の応答:

09-16 17:06:21.860: D/Facebook-Util(26652): POST URL: https://graph.facebook.com/me/feed
09-16 17:06:23.350: V/response(26652): {"error":{"message":"An active access token must be used to query information about the current user.","type":"OAuthException","code":2500}}

任意の提案をいただければ幸いです。ありがとう

4

1 に答える 1

0

しかし、アクセス トークンは送信されていませんね。次のようなものを試してください:

String token = getAccessToken();

if (token){
    parameters.putString("access_token", token);
    String response = mFacebook.request("me/feed",parameters,"POST");
} else {
    // Log the user in
}
于 2012-09-16T12:45:08.113 に答える