Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Now that Facebook rolled out their new policy in February 2013 where, among other changes, apps cannot post on friend's wall; and Send Dialog is not supported for Mobile Devices.

What options do we have to post on a user's friend wall (on behave of the user already authenticated with an app) using mobile devices?

share|improve this question

1 Answer

You can use feed dialog or redirect the user to a mobile friendly url by adding display=touch and *to=FRIENDS_ID* and show a dialog box.

To display a mobile-friendly Feed Dialog, redirect the user to the following URL:
http://www.facebook.com/dialog/feed?client_id=YOUR_APP_ID&redirect_uri=YOUR_URL&to=FRIENDS_ID&display=touch

Using feed dialog and javascript api

function postToFeed(kompis) {
    // calling the API ...
    var obj = {
      method: 'feed',
      redirect_uri: 'http://url.nu',
      link: 'http://www.url.se',
      picture: 'http://url/tfc.gif',
      name: 'Facebook Dialogs',
      caption: 'Reference Documentation',
      description: 'Using Dialogs to interact with users.',
      display:'touch',
      to:kompis
    };
    function callback(response) {
     if (response && response.post_id) {
     alert('Post was published.');
     document.getElementById('status').innerHTML = "Post ID: " + response['post_id'];
      } else {
      alert('Post was not published.');
      }
    }
    FB.ui(obj, callback);
  }

ps: when I try it in firefox I set my User Agent to "iphone" otherwise it would'nt work!

share|improve this answer
I did this and it didn't work for my android device – franciscovalera Mar 14 at 15:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.