我正在尝试通过 Facebook 共享图像和内容,但我正在尝试的是,如果用户没有通过 Facebook 登录,并且用户单击共享按钮,那么首先它应该要求登录,但是当我运行我的代码时,我没有得到错误,但屏幕上什么也没发生,它进入我的 else 部分,在 logcat 中它显示 else 部分的消息
适配器
holder.sharefb.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
if (strtextfb == null) {
share();
}
}
});
方法
public void RequestData(){
GraphRequest request = GraphRequest.newMeRequest(AccessToken.getCurrentAccessToken(), new GraphRequest.GraphJSONObjectCallback() {
@Override
public void onCompleted(JSONObject object,GraphResponse response) {
JSONObject json = response.getJSONObject();
try {
if(json != null){
String text = "<b>Name :</b> "+json.getString("name")+"<br><br><b>Email :</b> "+json.getString("email")+"<br><br><b>Profile link :</b> "+json.getString("link");
// details_txt.setText(Html.fromHtml(text));
// profile.setProfileId(json.getString("id"));
// System.out.println("FbId" + fbids);
}
} catch (JSONException e) {
e.printStackTrace();
}
}
});
Bundle parameters = new Bundle();
parameters.putString("fields", "id,name,link,email,picture");
request.setParameters(parameters);
request.executeAsync();
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
callbackManager.onActivityResult(requestCode, resultCode, data);
}
public void share() {
if (AccessToken.getCurrentAccessToken() != null) {
RequestData();
String pictureUrl = "https://upload.wikimedia.org/wikipedia/en/9/90/Bale_as_Batman.jpg";
Bundle params = new Bundle();
params.putString("name", "" + "Aditya");
params.putString("message", "" + "Nver Give Up");
params.putString("caption", "" + "Hi");
params.putString("description", "" + "Lie Cheat Steal");
params.putString("link", "" + "https://www.google.co.in/");
if (pictureUrl != "")
params.putString("picture", "" + pictureUrl);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/me/feed",
params,
HttpMethod.POST,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
Log.e("res", "" + response.getError());
}
}
).executeAsync();
}
else
{
LoginManager.getInstance().registerCallback(callbackManager, new FacebookCallback<LoginResult>() {
@Override
public void onSuccess(LoginResult loginResult) {
GraphRequest request = GraphRequest.newMeRequest(loginResult.getAccessToken(), new GraphRequest.GraphJSONObjectCallback() {
@Override
public void onCompleted(JSONObject jsonObject, GraphResponse graphResponse) {
}
});
}
@Override
public void onCancel() {
}
@Override
public void onError(FacebookException e) {
}
});
System.out.println("else part");
}
}