Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Silverlight is Microsoft's cross-browser, cross platform plug-in for media experiences and rich interactive applications. The version 4 was released in April 2010.

learn more… | top users | synonyms (1)

0
votes
1answer
52 views

unable to login with the credentials of user who does not have an appid for facebook application in silverlight

Am trying to login to my facebook app. created with c#.net and silverlight. here, I am sending a request containing appid that I have requested from the facebook sdk to login to my application which ...
0
votes
2answers
252 views

Facebook c# sdk, silverlight4, login example please

What I would like to do is upload a photo to the fb user's wall. I have the photo in memory as a byte[] array. The posting is not too much of a problem, but getting the user to log in first is where ...
0
votes
1answer
225 views

Facebook.GetTaskAsync giving [net_unknown_prefix] error

I'm using Facebook API v5.3 BETA, although have tried the following using v5.2.1 Stable. I am also using the Facebook.Extensions.Tasks library. Upon calling the FBClient.GetTaskAsync() function I get ...
0
votes
1answer
221 views

Silverlight WebClient class returning empty string

I am trying to make a basic 'Silverlight Class Library' in Silverlight 4 to return basic Facebook Information using Facebook's Graph API, but I am only getting empty strings being returned. I am ...
1
vote
0answers
258 views

Facebook C# SDK integration in Silverlight without Asp.Net

Heyho, unfortunaly I don't own a Asp.Net host. Thats why I was searching for examples using the C# Facebook SDK without a Asp.Net implementation. One site showing it is the following: ...
0
votes
1answer
398 views

Silverlight 4.0 Facebook App - Web vs Native/Desktop

I don't know what to choose. I have a standard Silverlight app hosted in an aspx page. From the aspx page, in JavaScript, I call some methods like: FB.init() and FB.getLoginStatus(). From the ...
0
votes
1answer
550 views

Trying to delete photos with Facebook C# SDK and issuing a POST request to Facebook Graph API

I want my Silverlight app to let the user delete a photo from his Facebook account, photo that I have already successfully retrieved from there and shown to the user, but the photo I want to delete is ...
1
vote
0answers
865 views

Getting an empty Facebook news feed response using Facebook C# SDK

I am using the Facebook C# SDK in my Silverlight 4 browser app to perform some requests to the Facebook Graph API. I followed the example in the SDK documentation to request the user's information ...
0
votes
1answer
669 views

Facebook C# SDK and OAuth Server-side flow in ASP.NET 4

I am working on a Silverlight 4 browser app from which I managed to succeed in complete the client-side flow authentication process. I've decided to better move to the server-side flow but, though I ...
0
votes
1answer
1k views

Facebook C# SDK: OAuth 2 in Silverlight 4 browser app

I'm completely newbie at authentication proccess with OAuth (I'm trying to make use of OAuth 2, exactly), and the example I am following to authenticate by using Facebook SDK latest release says that ...
0
votes
1answer
956 views

calling FacebookClient.PostAsync from silverlight canvas app generates MethodAccessException

I am calling this from a silverlight app: // docs at: http://developers.facebook.com/docs/reference/api/post var client = new FacebookClient(_token); dynamic parameters = new ...
1
vote
1answer
2k views

Uploading a photo to facebook in Windows phone 7

I am not finding any concrete api or reference about uploading a photo to facebook in windows phone 7.I have tried with the latest c# sdk from http://facebooksdk.codeplex.com. But no luck.Appreciate ...
0
votes
1answer
61 views

How to get the name in facebook and silverlight?

I've been trying to get the name and only the name. Like this shows everything: fb.GetAsync("me", (val) => { if (val.Error == null) { ...
1
vote
0answers
111 views

Why am i not able to make facebook c# sdk 4.1 sample work?

I have setup my application on facebook and changed the appid and secretkey in the sample. When i click login to facebook a popup does come but when i enter my username and password for facebook it ...
1
vote
1answer
65 views

What API does Facebook Flacedeck use?

What API does flacedeck use? http://blog.inextin.in/2010/12/flacedeck-mediacenterized-facebook.html Does it use the same Facebook Developer toolkit or some other? Thanks in advance :)
0
votes
1answer
407 views

How can i integrate facebook authentication in my Silverlight application?

How can i integrate Facebook connect in my application? I don't want to force my users to compulsorily make accounts on my website. Instead if the person has facebook it is alright for me. I am ...
1
vote
2answers
521 views

Silverlight OOB (Out of Browser) Using Facebook Graph API

I'm building an out of browser Silverlight app and trying to use the Facebook Graph API, but I'm having trouble getting through the authentication round trip. I've gone through their Desktop ...
1
vote
3answers
151 views

Silverlight and Facebook

How well does Silverlight play with Facebook? Is there a special toolkit for facebook that I should use?
2
votes
1answer
268 views

Unit Testing the Server Interface for a Silverlight-Facebook Application

I have a Silverlight 4 client running on a Facebook page hosted on Google App Engine. It's using gminifb to communicate with the Facebook API. The Silverlight client uses POST calls to the URIs for ...