Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

My code hasn't changed, it was working yesterday or so.

I can oauth, get the token but then doing the following:

WebClient wc = new WebClient();
wc.DownloadStringCompleted += result;
wc.DownloadStringAsync(new Uri("https://graph.facebook.com/me&access_token=xxxTOKENxxx", UriKind.Absolute));

Returns a NotFound WebClient exception: "The remote server returned an error: NotFound."

Strange thing is that when pasting that same url on Chrome or IE it does work(PC).

Tried on Emulator and on 2 different real WP devices, even pasting the same url on the WP browser.

Feels like facebook is rejecting Windows Phone for some reason?

Anyone has an idea of what might be happening?

share|improve this question
Can you paste the code into a desktop app and confirm it works from that? – Preet Sangha Jun 13 '12 at 1:58
1  
Yes, works on any browser/machine except Windows Phone. – Juan Diego Jun 13 '12 at 3:51

2 Answers

up vote 1 down vote accepted

look like there is a bug on Facebook being tracked

click here if you want to follow

https://developers.facebook.com/bugs/367369176650486?browse=search_4fd82eadc62186861827790

after reading the link someone says graph.beta.facebook.com does work instead of graph.facebook.com

share|improve this answer
Right, it is fixed now. – Juan Diego Jun 13 '12 at 14:35

I can confirm its not you. WP7 sample from the SDK from GitHub is failing. ASP.NET sample is now returning an "Error occured in . Please try again later." error. As you noted, copying and pasting the URL into IE resolves and returned the expected JSON. Clearly something has changed.

share|improve this answer
Might be worth raising an issue on Connect.microsoft.com to investigate in case Facebook are playing dirty. – Preet Sangha Jun 13 '12 at 6:30

protected by Brad Larson Aug 13 '12 at 14:56

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.