使用facebook graph api发布签到

时间:2012-12-18 06:19:27

标签: android facebook-graph-api

https://graph.facebook.com/profile-id/checkins?access_token=access_token&message=“办公室”

我正在使用上面的图表api,在我的Feed上发布签到,我在浏览器上试过这个, 我将空数组作为响应,我也使用了图api资源管理器中的access_token,允许(publish-checkins)。

我得到的反应如下

     {
   "data": [

   ]
}

1 个答案:

答案 0 :(得分:0)

final JSONObject jsonobj;

try {

    jsonobj = new JSONObject();
    jsonobj.put("latitude", fetLatitude);
    jsonobj.put("longitude", fetLongitude);

    final String message;
    final String name = fetPlaceName;
    final String placeID = fetPlaceID;

    if (edittxtMessageBox != null){
        message = edittxtMessageBox.getText().toString();
    } else {
        message = "I am at: " + fetPlaceName  + " using MyAppName";
    }

    new AlertDialog.Builder(this).setTitle(R.string.check_in_title)
        .setMessage(String.format(this.getString(R.string.check_in_at), name))
        .setPositiveButton(R.string.checkin, new DialogInterface.OnClickListener() {

            @Override
            public void onClick(DialogInterface dialog, int which) {
                Bundle params = new Bundle();
                params.putString("place", placeID);
                params.putString("message", message);
                params.putString("coordinates", jsonobj.toString());
                Utility.mAsyncRunner.request("me/checkins", params, "POST",
                        new placesCheckInListener(), null);
            }
        }).setNegativeButton(R.string.cancel, null).show();
} catch (Exception e) {
    e.printStackTrace();
}