java - 通过应用程序在 Facebook 粉丝页面上发布

标签 java android facebook facebook-graph-api fan-page

我已经成功地创建了一个发布在我的 facebook 墙上的类(class)。但是我该如何更改代码以在我的 Facebook 粉丝专页上分享呢?我在 google 或 stack overflow 上找不到任何东西...

这是在 facebook 上分享的类:

package com.celticwolf.blahblah;  <--- changed

import com.facebook.android.*;
import com.facebook.android.Facebook.DialogListener;

import android.app.Activity;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.Window;
import android.widget.Toast;

public class ShareOnFacebook extends Activity{

    private static final String APP_ID = "35255389027859";  <--- changed
    private static final String[] PERMISSIONS = new String[] {"publish_stream"};

    private static final String TOKEN = "access_token";
        private static final String EXPIRES = "expires_in";
        private static final String KEY = "facebook-credentials";

    private Facebook facebook;
    private String messageToPost;

    public boolean saveCredentials(Facebook facebook) {
            Editor editor = getApplicationContext().getSharedPreferences(KEY, Context.MODE_PRIVATE).edit();
            editor.putString(TOKEN, facebook.getAccessToken());
            editor.putLong(EXPIRES, facebook.getAccessExpires());
            return editor.commit();
        }

        public boolean restoreCredentials(Facebook facebook) {
            SharedPreferences sharedPreferences = getApplicationContext().getSharedPreferences(KEY, Context.MODE_PRIVATE);
            facebook.setAccessToken(sharedPreferences.getString(TOKEN, null));
            facebook.setAccessExpires(sharedPreferences.getLong(EXPIRES, 0));
            return facebook.isSessionValid();
        }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        facebook = new Facebook(APP_ID);
        restoreCredentials(facebook);

        requestWindowFeature(Window.FEATURE_NO_TITLE);

        setContentView(R.layout.facebook_dialog);

        String facebookMessage = getIntent().getStringExtra("facebookMessage");
        if (facebookMessage == null){
            facebookMessage = "Test wall post";
        }
        messageToPost = facebookMessage;
    }

    public void doNotShare(View button){
        finish();
    }
    public void share(View button){
        if (! facebook.isSessionValid()) {
            loginAndPostToWall();
        }
        else {
            postToWall(messageToPost);
        }
    }

    public void loginAndPostToWall(){
         facebook.authorize(this, PERMISSIONS, Facebook.FORCE_DIALOG_AUTH, new LoginDialogListener());
    }

    public void postToWall(String message){ 
        new MyAsyncTask().execute(message);
    } 




class MyAsyncTask extends AsyncTask<String,Void,Boolean>
{
public Boolean doInBackground(String ...message){

    Bundle parameters = new Bundle();
            parameters.putString("message", message[0]);
            parameters.putString("description", "topic share");
            try {
                facebook.request("me");   
        String response = facebook.request("me/feed", parameters, "POST");  <---  I think here is the crucial part
        Log.d("Tests", "got response: " + response);
        if (response == null || response.equals("") ||
                response.equals("false")) {
            return Boolean.FALSE;
        }
        else {
             return Boolean.TRUE;
        }
    } catch (Exception e) {

        e.printStackTrace();
        return Boolean.FALSE;
    }
} 

public void onPostExecute(Boolean result){
        if(result == Boolean.TRUE){
 showToast("posted successfully");
}else{
 showToast("couldn't post to FB.");
}
        finish();
}
}






    class LoginDialogListener implements DialogListener {
        public void onComplete(Bundle values) {
            saveCredentials(facebook);
            if (messageToPost != null){
            postToWall(messageToPost);
        }
        }
        public void onFacebookError(FacebookError error) {
            showToast("Authentication with Facebook failed!");
            finish();
        }
        public void onError(DialogError error) {
            showToast("Authentication with Facebook failed!");
            finish();
        }
        public void onCancel() {
            showToast("Authentication with Facebook cancelled!");
            finish();
        }
    }

    private void showToast(String message){
        Toast.makeText(getApplicationContext(), message, Toast.LENGTH_SHORT).show();
    }
}

谢谢!

最佳答案

<罢工>

<罢工>
String response = facebook.request("me/feed", parameters, "POST");

<罢工>

me/feed 变成 PAGE_ID/feed:

String response = facebook.request("PAGE_ID/feed", parameters, "POST");

在此处了解如何使用图谱 API:https://developers.facebook.com/docs/reference/api/

关于java - 通过应用程序在 Facebook 粉丝页面上发布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14186642/

相关文章:

java - Liferay Portlet 基本 MVC 流程和 View 选择

Glassfish 3.1.2.2 上的 java.lang.NoClassDefFoundError

android - 在对象之间共享实例的最佳实践

java - 减少android facebook SDK的大小

android - 有谁知道为什么facebook放错图片

facebook - 使用 graph api 获取照片

java - 如何按组聚合通量上的元素/如何按组减少?

java - 将行号添加到已编译的类

android - 如何在我的 Android 设备上禁用已安装的 Google Play 服务版本?

android - 谷歌地图标记阵列?