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);
}
});
}