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.

I'm developing an Android app and am interested to know how you can update the app user's status from within the app using Android's share intents.

Having looked through Facebook's SDK it appears that this is easy enough to do, however I'm keen to allow the user to do it via the regular Share Intent pop up window? seen here:

pop up

I have tried the usual share intent code, however this no longer appears to work for Facebook.

public void invokeShare(Activity activity, String quote, String credit) {
    Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
    shareIntent.setType("text/plain");
    shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, activity.getString(R.string.share_subject));
    shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Example text");    

    activity.startActivity(Intent.createChooser(shareIntent, activity.getString(R.string.share_title)));
}

UPDATE: Having done more digging, it looks as though it's a bug with Facebook's app that has yet to be resolved! (facebook bug) For the mean time it looks like I'm just going to have to put up with the negative "Sharing doesn't work!!!" reviews. Cheers Facebook :*(

share|improve this question
been broken for about a year now with multiple revisions I don't understand why they won't fix it!! – schwiz Sep 29 '11 at 4:06
Still broken. I am starting to think they do not fix it on purpose to make you use their stupid facebook sdk. – UncleIstvan Mar 12 '12 at 13:58
The above share code snippet will work with the current android app (v1.9.0, release date april 20th, 2012). an arbitrary EXTRA_TEXT still won't show up, BUT the facebook app will accept any url. a share text will have to be entered by the user within the facebook app. – alex Apr 23 '12 at 16:02
2  
Ugh, it appears that Facebook has now formally responded that they don't consider the behavior broken and will not be changing it: developers.facebook.com/bugs/332619626816423 – Scott W Sep 12 '12 at 15:30
So no fix or workaround at least? We have to live with the empty message? :/ – Ixx Jan 14 at 16:29
show 1 more comment

2 Answers

up vote 9 down vote accepted

The usual way

The usual way to create what you're asking for, is to simply do the following:

    Intent intent = new Intent(Intent.ACTION_SEND);
    intent.setType("text/plain");
    intent.putExtra(Intent.EXTRA_TEXT, "The status update text");
    startActivity(Intent.createChooser(intent, "Dialog title text"));

This works without any issues for me.

The alternative way (maybe)

The potential problem with doing this, is that you're also allowing the message to be sent via e-mail, SMS, etc. The following code is something I'm using in an application, that allows the user to send me an e-mail using Gmail. I'm guessing you could try to change it to make it work with Facebook only.

I'm not sure how it responds to any errors or exceptions (I'm guessing that would occur if Facebook is not installed), so you might have to test it a bit.

    try {
        Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
        String[] recipients = new String[]{"e-mail address"};
        emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, recipients);
        emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "E-mail subject");
        emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "E-mail text");
        emailIntent.setType("plain/text"); // This is incorrect MIME, but Gmail is one of the only apps that responds to it - this might need to be replaced with text/plain for Facebook
        final PackageManager pm = getPackageManager();
        final List<ResolveInfo> matches = pm.queryIntentActivities(emailIntent, 0);
        ResolveInfo best = null;
        for (final ResolveInfo info : matches)
            if (info.activityInfo.packageName.endsWith(".gm") ||
                    info.activityInfo.name.toLowerCase().contains("gmail")) best = info;
                if (best != null)
                    emailIntent.setClassName(best.activityInfo.packageName, best.activityInfo.name);
                startActivity(emailIntent);
    } catch (Exception e) {
        Toast.makeText(this, "Application not found", Toast.LENGTH_SHORT).show();
    }
share|improve this answer
Thank you for your reply. This is what confuses me though, the first snippet of code you posted works fine for posting to every other app with share intents available, however with Facebook's intent it takes the user to a blank "Write something" facebook page as if it's not sending (or possibly receiving) the text within the EXTRA_TEXT field. – Big Joe Sep 25 '11 at 17:04
Hmm, it works just fine with the first one on my tablet. Try it without the EXTRA_SUBJECT field, as stated. That seems to be making the difference. – Michell Bak Sep 25 '11 at 17:34
1  
Actually, I just checked it and yeah - it's broken. Used to work. – Michell Bak Sep 25 '11 at 17:37
Yeah, as mentioned in my edited first post it appears to be a bug in the Facebook app which has been there since April 2011(!). Regardless though, thank you for taking the time to repond to my question. – Big Joe Sep 25 '11 at 17:42

The Facebook application does not handle either the EXTRA_SUBJECT or EXTRA_TEXT fields.

Here is bug link : https://developers.facebook.com/bugs/332619626816423

share|improve this answer
this should be the answer – haythem souissi Feb 22 at 10:34
1  
The thing is, if you put a URL in the EXTRA_TEXT field, it does work. It's like their intentionally stripping out any text. – billynomates May 3 at 12:02

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.