Application ID is not registering in the graph

152 Views Asked by At

I've developed an android application, and I successfully integrated facebook sdk in my APP.
I made some tests before on HelloFacebookSample application that comes with facebook sdk.
The Application ID given in the UserGraph instance in the HelloFacebookSample have worked well in the graph api.
like this https://graph.facebook.com/1531414210465350
or like this https://www.facebook.com/1531414210465350
knowing that 1531414210465350 is the application ID gotten by user.getId(); in the HelloFacebookSample
But when I tried to put my own application ID in the graph or in the link, I get error:

{
   "error": {
      "message": "Unsupported get request. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api",
      "type": "GraphMethodException",
      "code": 100
   }
}

I'm missing something but I don't know where, please if you have any suggestion I'll be thankful
This is the main activity code:

public class getJID extends FragmentActivity {
    private static final String PERMISSION = "publish_actions";
    private LoginButton loginButton;
    private UiLifecycleHelper uiHelper;
    private Session.StatusCallback callback = new Session.StatusCallback() {
        @Override
        public void call(Session session, SessionState state,
                Exception exception) {
            onSessionStateChange(session, state, exception);
        }
    };

    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        Session.getActiveSession().onActivityResult(this, requestCode,
                resultCode, data);
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.facebook_login);
        uiHelper = new UiLifecycleHelper(this, callback);
        uiHelper.onCreate(savedInstanceState);
        Session session = Session.getActiveSession();
        loginButton = (LoginButton) findViewById(R.id.connectWithFbButton);
        loginButton
                .setUserInfoChangedCallback(new LoginButton.UserInfoChangedCallback() {
                    @Override
                    public void onUserInfoFetched(GraphUser user) {
                        if (user != null) {
                            try {

                                System.out
                                        .println("this is from the user object "
                                                + user.getId());
                            } catch (Exception e) {
                                System.out.println(e.getMessage());
                            }
                        }

                    }
                });

    }

    private void onSessionStateChange(Session session, SessionState state,
            Exception exception) {
        if (state.isOpened()) {
            System.out.println("SESSION IS OPPENED");
        } else if (state.isClosed()) {
            System.out.println("SESSION IS CLOSED");
        }
    }
}

knowing that I placed my application ID in the manifest and everything is working right except for the scoped application ID is not mapped with the logged profile.

0

There are 0 best solutions below