Michael R
Michael R

Reputation: 75

Send status to Facebook from Windows phone 7 silverlight application. What do I need?

How do I perform this? I'm making a funny little notepad application where you should be able to send your notes to your Facebook account, as a status.

My question more directly is: Where do I find code so I login to "Facebook-write status page"? And how do I implement it in this silverlight application? Can I use html/Javascript for this maybe?

Upvotes: 1

Views: 1206

Answers (2)

Matt Lacey
Matt Lacey

Reputation: 65564

There is a project at http://facebooksdk.codeplex.com/ which lots of people have used to integrate Facebook functionality into their Windows Phone 7 apps.

Upvotes: 2

Rune Grimstad
Rune Grimstad

Reputation: 36300

You don't need to use javascript or html for this.

Facebook has an API that you can use by sending web requests from your application to facebooks servers. The process is not straight forward, so you should check out the documentation here: https://developers.facebook.com/search?q=API

There is an open source C# based API available here: https://developers.facebook.com/blog/post/395 It may be easier to use than doing web requests yourself.

Upvotes: 0

Related Questions