我这次试验过facebook android sdk ......
btw我正在使用facebook到android集成教程,弹出对话框布局...... 链接http://integratingstuff.com/2010/10/14/integrating-facebook-into-an-android-application/
这是我使用的代码:
public class Sharefb extends Activity {
private static final String APP_ID = "xxxxxxxxxxxxxxxx";
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.main);
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, new LoginDialogListener());
}
public void postToWall(String message){
Bundle parameters = new Bundle();
parameters.putString("message", message);
facebook.dialog(this, "stream.publish", parameters, new WallPostDialogListener());
}
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();
}
}
class WallPostDialogListener implements DialogListener {
public void onComplete(Bundle values) {
final String postId = values.getString("post_id");
if (postId != null) {
showToast("Message posted to your facebook wall!");
} else {
showToast("Wall post cancelled!");
}
finish();
}
public void onFacebookError(FacebookError e) {
showToast("Failed to post to wall!");
e.printStackTrace();
finish();
}
public void onError(DialogError e) {
showToast("Failed to post to wall!");
e.printStackTrace();
finish();
}
public void onCancel() {
showToast("Wall post cancelled!");
finish();
}
}
private void showToast(String message){
Toast.makeText(getApplicationContext(), message, Toast.LENGTH_SHORT).show();
}
}
不幸的是,每次我发出请求......窗口只需几秒钟闪烁然后结束......
之后,当我在我的模拟器上删除Facebook应用程序时,它工作正常,我可以在我的墙上发布新消息......
这有什么问题吗? 我希望你们很快就会发现
坦克你!
答案 0 :(得分:1)
我找到了解决问题的方法;看到这里:
public void loginAndPostToWall() {
facebook.authorize(PostwallActivity.this, PERMISSIONS,
new LoginDialogListener());
}
之前使用此登录游览将此行替换为:
public void loginAndPostToWall() {
facebook.authorize(PostwallActivity.this,
PERMISSIONS,Facebook.FORCE_DIALOG_AUTH,new LoginDialogListener());
}
您获得了输出并仅获取了应用登录页面,但没有获得主Facebook应用登录页面。