Anybody having issues with getting friends and/or albums suddenly? The app I'm working on suddenly started throwing all sorts of errors, and they all seem to be linked to failing Facebook API calls.
Offline
here is a good idea, just sit back and leave facebook alone for a few days because as soon as you get one thing working something else will break,.
Offline
Yes, just watch it. Facebook movie I II III IV
Offline
I'm getting a lot of HTTP Error 500. The app will work one second and then not the next. Is this the behavior you're seeing? This just started this morning.
Offline
I'm getting lots of Connection Reset from API calls
Interestingly, I'm getting failures from a Get Friends call - I only do that call if the Preload FQL isn't supplied to my app, so that's probably broken for some of the Facebook servers too, or some of the users.
Offline
Yes this seems to be related to the users_getInfo call for me. Actually sometimes I seem to get a list of friends back and my app works fine. sometimes I get teh friends but I can't get the info. and sometimes the server just seems to die altogether. what is going on?? this started today for me after no changes to my app since yesterday.
Thanks
Offline
same here - problems all over the place with getfriends/getInfo API calls, also lots of users are reporting that posting on fb:comments walls gives a "permission" error, not to mention all the "connection resets"
Offline
so this is totally on facebook's side right? is it related to the updates they are doing you think? nothing has changed with the getFriends or getInfo calls has it?
Offline
Same issue on my side...
Offline
Hi
im getting problems checking if are_friends! also getting CSS issues:
CSS Error (line 32 char 41): Expected end of value for property....
Anyone else getting this one?
Offline
This just got a lot worse for me - I'm getting 1 every few seconds (I get an email for every one of these errors!)
Offline
I'm getting issues sending messages with web links (with the AJAX-y thumbnail machine)
Offline
Ah... this is craptacular!
Offline
I'm trying to understand why only certain apps have this issue. It's impossible to run a business when your competition seems to be on a separate cluster running perfectly fine and you cannot get a single API call without timing out!!!
FACEBOOK - PLEASE HELP!!!
Offline
make it stopppp!!
Offline
Thank you for reporting this issue guys. We're aware of this and our engineers are currently working on a solution. To help us out a bit, and make sure we get everything.
For all of you having problems it would very helpful for you to specify as much detail about the problem as possible. For example if it's an API call that's failing, please detail what call it is, how it's failing (no response, error code, intermittent failing, etc.), whether you're hitting api.new.facebook.com or not, and when you started to see this issue.
We will alert you when we get this resolved.
Thanks,
Matt Choi
Offline
will we be alerted in this thread? it seems to be a cluster to cluster issue as someone mentioned because things were working fine for a few minutes and now they are back to broken. thx.
Offline
Having similar problems over here.
I'm working in .NET and using the Facebook Developer Toolkit. I started getting the error today, and have never seen it before today.
I seem to be getting the error very randomly. The only pattern I've seen is that it comes in waves - everything will be fine for a few hours, but then it will get, like, really bad for a half hour or so. I get the error mostly when I'm trying to instantiate a Facebook service, although I also get them when I call getUserInfo() and directFqlQuery().
This is the error I get :
System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host
Here is the function in the Facebook Developer Toolkit where the exception is thrown :
internal static string GetQueryResponse(string requestUrl, string postString)
{
// Create a web request for input path.
WebRequest webRequest = WebRequest.Create(requestUrl);
webRequest.Method = "POST";
webRequest.ContentType = "application/x-www-form-urlencoded";
if (!String.IsNullOrEmpty(postString)) {
byte[] parameterString = Encoding.ASCII.GetBytes(postString);
webRequest.ContentLength = parameterString.Length;
using (Stream buffer = webRequest.GetRequestStream()) {
buffer.Write(parameterString, 0, parameterString.Length);
buffer.Close();
}
}
WebResponse webResponse = webRequest.GetResponse();
string responseData;
using (StreamReader streamReader = new StreamReader(webResponse.GetResponseStream())) {
responseData = streamReader.ReadToEnd();
}
return responseData;
}
I should note that I haven't made any serious changes to my app in the last few days.
Offline
I'm seeing this as well on FQL queries. It's intermittent, but this code:
$array = $facebook->api_client->fql_query($fql);
is sometimes returning the correct result set, but is sometimes empty. I'm not getting any errors or exceptions, just an empty result.
Offline
I am getting:
WARNING IsterXmlExpatNonValid->parse(): expat: Invalid document end [0/1/1]
Fatal error: Call to a member function CDATA() on a non-object
.. this occurs randomly. I noticed it last week but it went away. In the last 12 hours it has all gone to hell in a handbag..
Offline
I've been complaining on the forum for few days about the poor service provided by api.new.facebook.com. Nobody seemed to answer. On my side, I'm getting 404 errors (only sometimes), and timeout when opening RequestStream (I'm using Facebook.NET).
It's happening with any API call (publishUserAction, setFBML, user.getInfo...). I get about 10 errors every second...
Sometime, I have the impression that you guys at Facebook have no clue about software development. Or maybe you are just too advanced for us... trying to have an API adopted by developers within 3 days while it's still not defined, and not working at all... it's not realistic
Offline
JeremyPollack wrote:
Having similar problems over here.
I'm working in .NET and using the Facebook Developer Toolkit. I started getting the error today, and have never seen it before today.
I seem to be getting the error very randomly. The only pattern I've seen is that it comes in waves - everything will be fine for a few hours, but then it will get, like, really bad for a half hour or so. I get the error mostly when I'm trying to instantiate a Facebook service, although I also get them when I call getUserInfo() and directFqlQuery().
This is the error I get :
System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host
Here is the function in the Facebook Developer Toolkit where the exception is thrown :
internal static string GetQueryResponse(string requestUrl, string postString)
{
// Create a web request for input path.
WebRequest webRequest = WebRequest.Create(requestUrl);
webRequest.Method = "POST";
webRequest.ContentType = "application/x-www-form-urlencoded";
if (!String.IsNullOrEmpty(postString)) {
byte[] parameterString = Encoding.ASCII.GetBytes(postString);
webRequest.ContentLength = parameterString.Length;
using (Stream buffer = webRequest.GetRequestStream()) {
buffer.Write(parameterString, 0, parameterString.Length);
buffer.Close();
}
}
WebResponse webResponse = webRequest.GetResponse();
string responseData;
using (StreamReader streamReader = new StreamReader(webResponse.GetResponseStream())) {
responseData = streamReader.ReadToEnd();
}
return responseData;
}
I should note that I haven't made any serious changes to my app in the last few days.
I got this error many times today. Looks like that there is a problem with Facebook servers..
NB Im using .NET too.![]()
Offline
Are people still having problems with regards to API performance? We've corrected a problem earlier today that was affecting API performance.
Matt Choi
Offline
as of right now it looks good. i am not getting errors. i will update this thread as i continue to work throughout the night. thx.
Offline
I just had one just after 8pm Pacific Time
Offline