I'm using android-facebook-sdk and trying to post to user's wall. Here is my code:
Bundle params = new Bundle();
JSONObject privacy = new JSONObject();
try {
privacy.put("value", "EVERYONE");
} catch (JSONException e) {
Log.e(TAG, "Unknown error while preparing params", e);
}
params.putString("message", message);
params.putString("privacy", privacy.toString());
facebook.request("me/feed", params, "POST");
Posted messages has privacy scope visible for friends only, but i want publish to everyone. What i do wrong?