viezel/TiSocial.Framework

facebook not showing status + image

Closed this issue · 7 comments

on iOS 8, with 3.5.1:

    var payload = {};
    payload.text = args.status;
    if (args.image){
        payload.image = args.image;
    }
    if(Social.isActivityViewSupported()){ //min iOS6 required
        if (Ti.Platform.osname == 'ipad') {
            payload.view = args.view;
            Social.activityPopover(payload);
        }else{
            Social.activityView(payload);
        }
           }

Only shows the image, not the text on facebook

I have the same issue, i guess its for the recent Facebook sdk update.

Same problem here...

any FIX ?

same problem...

I found in Facebook new politics some points about this issue. Basically in the new Platform Policy is not allowed pre-fill the text to share. This links explain better this point:

So... nox fix until facebook changes their api

The native way is to use the Facebook Share API from ti.facebook if the facebook activity is selected. This is no module issue.