Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an Android application in which I need to login into the Facebook account using user name and password. After logging is successful I need to extract few things from Facebook account for that user such as id,fname,lname,gender,photo and then insert into database which I have done that.

Now after extracting the id for that user, I need to pass that id to another intent (means another screen).

Below is the code I have, I am using Facebook SDK to authenticate and then in the background I am extracting few things for that user from his Facebook account and inserting into the database.

Problem Statement:-

The only problem that I am thinking with my code is- Suppose any user came for the first time, he logged in with his Facebook credentials, then execute method will be called to retrieve few fields from the Facebook account and insert into database and this thing is happening in the background so my worry is by the time it will be extracting id from his Facebook account, it might be possible that screen has moved to another intent. Right?

If yes so how can I overcome this situation?

private final static String FACEBOOK_URL = "https://graph.facebook.com/me?access_token=";
private static String id;

private void updateView() {
    Session session = Session.getActiveSession();
    if (session.isOpened()) {//Logged in Successfully

        new RetreiveFeedTask().execute(FACEBOOK_URL + session.getAccessToken());

        Bundle bundle = new Bundle();
        bundle.putString("USER_ID", id);
        Intent thesisProject = new Intent(getActivity(), ThesisProjectAndroid.class);
        thesisProject.putExtras(bundle);
        startActivity(thesisProject);
    } else {
        Log.d(TAG_LOGIN_FAILED,
            "There is something wrong with your Facebook account. Please try again.");
    }
    }


    private class RetreiveFeedTask extends AsyncTask<String, Void, JSONObject> {

    private StringBuilder builder = new StringBuilder();
    private DefaultHttpClient httpclient = new DefaultHttpClient();
    private BufferedReader bufferedReader = null;
    private JSONObject jsonObject = null;

    protected JSONObject doInBackground(String... urls) {
        try {
        String url = (urls[0]);
        HttpGet httpget = new HttpGet(url);
        httpget.getRequestLine();
        HttpResponse response = httpclient.execute(httpget);
        HttpEntity entity = response.getEntity();
        if (entity != null) {
            InputStream inputStream = entity.getContent();
            bufferedReader = new BufferedReader(new InputStreamReader(inputStream));
            for (String line = null; (line = bufferedReader.readLine()) != null;) {
            builder.append(line).append("\n");
            }
            jsonObject = new JSONObject(builder.toString());

            id = jsonObject.getString(TAG_ID);
            String name = jsonObject.getString(TAG_FULL_NAME);
            String firstName = jsonObject.getString(TAG_FIRST_NAME);
            String lastName = jsonObject.getString(TAG_LAST_NAME);
            String gender = jsonObject.getString(TAG_GENDER);
            String username = jsonObject.getString(TAG_USERNAME);
            String photo_url = FACEBOOK_PHOTO_URL + id + PICTURE;

            //Then insert into database with above fields

        }

        } catch (Exception e) {
        Log.d(TAG, e.getMessage());
        }
        return jsonObject;
    }

    @Override
    protected void onPostExecute(JSONObject response) {

        try {

        } catch (Exception e) {

        }

    }
    }   
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.