Max Zhukov
Max Zhukov

Reputation: 897

Windows Phone integration with social networks

I'm writing simple application for Windows Phone 8, and I want to implement sharing in socials (Twitter and Facebook). But there is a problem: third-party libraries don't work with Portable Class library for Windows Phone. But if I use REST API, I need to interact with the WebBrowser element. Is there a way to authorize and post messages without WebBrowser?

Upvotes: 1

Views: 124

Answers (1)

venerik
venerik

Reputation: 5904

It is not quite clear what you mean exactly but to share a status on Facebook or Twitter you can use the ShareStatusTask

using Microsoft.Phone.Tasks;

ShareStatusTask shareStatusTask = new ShareStatusTask();
shareStatusTask.Status = "I'm developing a Windows Phone application!";
shareStatusTask.Show();

Have a look here

Upvotes: 1

Related Questions