Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I got a problem when I tried to use facebook checkin api. I modified from Facebook official sample "Hackbook", but the app is forced quit every time I press the checkin button.

below is the btn_checkin method and I put my source code here, please someone kindly help me, many thanks.

        btn_checkin.setOnClickListener(new Button.OnClickListener(){

        @Override
        public void onClick(View v) {

            final String placeID = "192039670829207"; 
            try {
                location.put("latitude", new Double(24.811385170108));
                location.put("longitude", new Double(120.9683341058));
            } catch (JSONException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }


            Bundle params = new Bundle();
            params.putString("place", placeID);
            params.putString("message", checkin_message);
            params.putString("coordinates", location.toString());

            Utility.mAsyncRunner.request("me/checkins", params, "POST",
                    new placesCheckInListener(), null);
                }
            }); 
        }
share|improve this question
Shows us your logs – Vipul Shah Jun 13 '12 at 4:07

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.