StezPet
StezPet

Reputation: 2450

Twitter / Facebook integration

I am on a mid way of porting an iPhone application to Windows Phone 7. In that iPhone application it is providing provision for submitting score details through Facebook / Twitter mail etc. So I need to implement the same functionality in WP7, too. How can I implement this functionality in my Windows Phone project?

While searching I found some methods with the help of web browser. But that is not useful in my case. In my app I need to log in through the the designed page and need to update the score status to the social networks through my own view.

Please help me to achieve the functionality in my app. (If anybody has sample apps or links please attach that information, too.)

Upvotes: 2

Views: 1854

Answers (2)

Bill Reiss
Bill Reiss

Reputation: 3460

I don't know if it's exactly what you're looking for, but ScoreLoop provides a free high score system as well as social network integration for Windows Phone games. I'm currently migrating my homegrown scores systems to ScoreLoop, looks good so far.

Upvotes: 0

calum
calum

Reputation: 1580

You can use the ShareStatusTask to post to facebook, twitter msn etc.

ShareStatusTask shareStatusTask = new ShareStatusTask();
shareStatusTask.Status = "My Score: xxxx";
shareStatusTask.Show();

Upvotes: 5

Related Questions