Reputation: 11293
I want my application to post something on Facebook wall. My application is supposed to run on WP7.
Is there any way of opening a web browser with a default Facebook (hosted on Facebook server) publishing form? I see different websites opening a new window with that form when Share button is clicked and then you click Publish and here you go - the post is on the wall :)
WebBrowserTask is pretty limited and seems to be able to send only GET data but even then... I don't know what kind of data and how named it should be sent. Anyone?
Upvotes: 1
Views: 3358
Reputation: 1445
You can try Post to Facebook user wall using Facebook.dll in WP7.
Upvotes: 1
Reputation: 363
If you want to post on someone other than the user's wall, then the Facebook SDK is required. But if you just want to quickly add the option to share something to Facebook, you could just open a new WebBrowserTask and have it go to http://www.facebook.com/share.php, and just add u and t to the URL. u being the URL to share, and t being the Title.
But from what's been said it seems the SDK is what your going to want.
Upvotes: 0
Reputation: 67168
Why not use the Facebook Developer's Toolkit to post via API instead of trying to use a browser?
Upvotes: 2