Note that there are some explanatory texts on larger screens.

plurals
  1. POWall post doesn't appear on facebook posted by my application: Android
    primarykey
    data
    text
    <p>I am using <a href="https://github.com/facebook/facebook-android-sdk" rel="nofollow">Facebook API</a> in my application to post messages to wall. Every thing work fine, but when I post message more than one time in a sort time interval, wall post doesn't appear on wall. I am sure there no any exception occurres while posting. </p> <p>I use 'offline-access' permission with my application. </p> <p>Code : </p> <pre><code>public static class UpdateWalls extends AsyncTask&lt;String, Integer, Boolean&gt; { private Context context; private String post; public UpdateWalls(Context context, String post) { this.context = context; this.post = post; } @Override protected Boolean doInBackground(String... strings) { FacebookConnector facebookConnector = new FacebookConnector(Constants.FACEBOOK_APPID, context, Constants.FACEBOOK_PERMISSION); try { facebookConnector.postMessageOnWall(this.post); } catch (Exception e) { return false; } return true; } } </code></pre> <p>and <em>FacebookConnector.postMessageOnWall() is</em></p> <pre><code>public void postMessageOnWall(String msg) { if (facebook.isSessionValid()) { Bundle parameters = new Bundle(); parameters.putString("message", msg); try { String response = facebook.request("me/feed", parameters,"POST"); Log.i("Facebook wall post", "While posting to wall response = " + response); //System.out.println(response); } catch (IOException e) { e.printStackTrace(); } } else { //login(); } } </code></pre> <p>Is this a known issue or something else? Please help me. </p> <p>Thank you. </p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload