Hi Developers,
I am facing the issue in sharing the text from my to facebook using share dailog in android. Right now i tries to share the text but i am not getting any succes in android. Does anybody have solution or getting success in sharing text in facebook using share dailog. Below is the code i am using in android.
var intFB = Ti.Android.createIntent({ action : Ti.Android.ACTION_SEND, packageName : "com.facebook.katana", type : "text/plain", }); intFB.putExtra(Ti.Android.EXTRA_TEXT, decodeURI(model.get('title'))); intFB.putExtra(Ti.Android.EXTRA_TEXT,decodeURI(model.get('title')) +"@http://www.government.ae"); Ti.Android.currentActivity.startActivity(intFB);But this is not helping me, I want to share the text using facebook app only. here is there refrence link.
https://developers.facebook.com/docs/android/share
Thanx in advance