c# - How to Share My News on Facebook on Windows Phone 8 -


i on windows phone project. project includes latest news various categories.

i'm done getting news web service on device. need share these news on facebook, twitter etc..

how can ?

i checked https://developers.facebook.com/ couldn't find idea or found, here http://facebooksdk.net/docs/phone/.

is there idea ? me please. need put button @ end of news , need share them on social platforms.

waiting answers four-eye.

thank much.

use sharestatustask

private void button_click(object sender, routedeventargs e) {    //themessagestatus message want post fb/twitter    sharenewsarticle(themessagestatus); }  private void sharenewsarticle(string message) {    sharestatustask sst = new sharestatustask();    sst.status = message;    sst.show(); } 

this let user choose social network update (e.g. fb, twitter etc..)


Comments

Popular posts from this blog

c++ - Creating new partition disk winapi -

Android Prevent Bluetooth Pairing Dialog -

php - joomla get content in onBeforeCompileHead function -