Sorry for the spam i found what is the problem in this thread
http://groups.google.com/group/android-developers/browse_thread/thread/731d7891c116a5d5/1a65697822513218?lnk=gst&q=ACTION_SEND+facebook#1a65697822513218

On Wed, Sep 8, 2010 at 2:29 PM, manigault <manig...@gmail.com> wrote:

> Hi all, I am using the following code to launch chooser for sharing
> Intent sendIntent = new Intent(Intent.ACTION_SEND);
> sendIntent.putExtra(Intent.EXTRA_TEXT, message);
> sendIntent.putExtra(Intent.EXTRA_SUBJECT, "MyApp");
> sendIntent.setType("text/plain");
> try {
>    activity.startActivity(Intent.createChooser(sendIntent, null));
> } catch (ActivityNotFoundException e) {
>    Log.e(TAG,e.getMessage(),e);
> }
> Sharing with gmail, twitter, messaging is working fine but there is
> some problem with facebook. When i press facebook i I'm redirected to
> facebook page in browser with correctly formed post message, but when
> i press "Post to Profile" button the page is loading but nothing
> happens no message appears in my facebook profile and no indication
> that the message was successfully posted.
> Any ideas am I missing some additional facebook extra in the intent.
> Thanks




-- 
When I raise my flashing sword, and my hand takes hold on judgment, I will
take vengeance upon mine enemies, and I will repay those who haze me. Oh,
Lord, raise me to Thy right hand and count me among Thy saints.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to