Suddenly Facebook API stopped working on Windows Phone
Posted
by
Juan Diego
on Stack Overflow
See other posts from Stack Overflow
or by Juan Diego
Published on 2012-06-13T01:51:36Z
Indexed on
2012/06/13
4:40 UTC
Read the original article
Hit count: 236
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?
© Stack Overflow or respective owner