我已将facebook sdk实现到我的android项目中。我正在使用共享按钮,它应该向用户时间轴发布新消息。一切正常,但我想在没有在手机上安装Facebook应用程序的情况下试用该应用程序。
我已经卸载了facebook,清除了缓存,清除了所有数据,从设置中删除了“Facebook帐户”并重新启动了手机。之后,我按下了应用程序中的分享按钮,帖子就在我的时间轴上!这怎么可能?我已经卸载了所有东西!
这是代码。我不知道这是否有助于解决问题。
点火
@Override
public void onClick(View v)
{
switch(v.getId())
{
case R.id.btnFacebook:
Session.openActiveSession(this, true, new Session.StatusCallback() {
@Override
public void call(Session session, SessionState state, Exception exception) {
if (session.isOpened()){
Request.executeMeRequestAsync(session, new Request.GraphUserCallback() {
@Override
public void onCompleted(GraphUser user, Response response) {
if (user != null){
publishStory();
}
}
});
}
}
});
break;
}
}
private void publishStory() {
Session session = Session.getActiveSession();
if (session != null){
// Check for publish permissions
List<String> permissions = session.getPermissions();
if (!isSubsetOf(PERMISSIONS, permissions)) {
Session.NewPermissionsRequest newPermissionsRequest = new Session
.NewPermissionsRequest(this, PERMISSIONS);
session.requestNewPublishPermissions(newPermissionsRequest);
return;
}
Bundle postParams = new Bundle();
postParams.putString("name", "Something...");
postParams.putString("caption", "My caption...");
postParams.putString("description", "Awesomedescription");
postParams.putString("link", "http://www.domain.com");
postParams.putString("picture", "http://www.domain.com/image.png");
Request.Callback callback= new Request.Callback() {
public void onCompleted(Response response) {
JSONObject graphResponse = response
.getGraphObject()
.getInnerJSONObject();
String postId = null;
try {
postId = graphResponse.getString("id");
Log.i("DEB", " SUCCESS POSTED TIMELINE ! ");
} catch (JSONException e) {}
FacebookRequestError error = response.getError();
if (error != null) {
} else {
Toast.makeText(getApplicationContext(),
postId,
Toast.LENGTH_LONG).show();
}
}
};
Request request = new Request(session, "me/feed", postParams,
HttpMethod.POST, callback);
RequestAsyncTask task = new RequestAsyncTask(request);
task.execute();
}
}
private boolean isSubsetOf(Collection<String> subset, Collection<String> superset) {
for (String string : subset) {
if (!superset.contains(string)) {
return false;
}
}
return true;
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
Session.getActiveSession().onActivityResult(this, requestCode, resultCode, data);
}
答案 0 :(得分:0)
Facebook应用程序和你的应用程序根本没有捆绑在一起。一旦您的应用获得访问令牌,您就可以保留并重复使用(即使您删除了Facebook应用)。
SDK中的Session类将自动缓存令牌以便重用(这样,当您打开新的Session时,它不会再次要求用户提供权限)。如果您想从应用程序中注销用户,则应在应用程序关闭时(或当用户选择注销时)调用session.closeAndClearTokenInformation()。