Forums

  • Home
  •  » API
  •  » API currently freaking out?

#126 2008-09-25 10:59:20

shayang
Member
Registered: 2008-09-25
Posts: 5

Re: API currently freaking out?

here are some sample failures:

rest server: http://api.new.facebook.com/restserver.php
api call: facebook.profile.setFBML
curl error: 52 (CURLE_GOT_NOTHING)

rest server: http://api.new.facebook.com/restserver.php
api call: facebook.feed.publishTemplatizedAction
curl error: 52 (CURLE_GOT_NOTHING)

rest server: http://api.new.facebook.com/restserver.php
api call: facebook.notifications.send
curl error: 52 (CURLE_GOT_NOTHING)

Offline

 

#127 2008-09-25 16:59:47

jamesb
Member
Registered: 2008-09-25
Posts: 1

Re: API currently freaking out?

We are experiencing the same issue. We are on ruby on rails using the facebooker gem.

Offline

 

#128 2008-09-26 03:35:21

ebswift
Member
Registered: 2008-01-19
Posts: 5

Re: API currently freaking out?

Here's my error; I'm getting it 100% of the time over the last hour on my main account, but not my developer test account:

Application: SmugFoto

1. The library you're using: Facebook Developer Tookit 2.0 RC2
2. The exact calls that are failing: Me.Master.API.profile.setFBML(CType(Me.Master.ownerInfo.uid, Long), Nothing, profilebox, Nothing)
3. How the calls are failing: (error 500) An existing connection was forcibly closed by the remote host
4. Whether the calls are to api.new.facebook.com or api.facebook.com (not sure, what the facebook developer tookit 2.0 RC2 is using)

Last edited by ebswift (2008-09-26 03:36:03)

Offline

 

#129 2008-10-01 05:02:37

wowdoe
Member
Registered: 2008-04-14
Posts: 12

Re: API currently freaking out?

Anyone else seeing widespread errors accessing datastore this morning?

Offline

 

#130 2009-03-17 10:27:47

raghukisore
Member
Registered: 2009-03-14
Posts: 24

Re: API currently freaking out?

Hello Everyone,
   I am a newbie and started working on a sample facebook application a week ago. I am trying to execute the sample facebook application that displays the friend list. I am using facebook 2.0 and .NET 3.0. The application is of type windows forms.
When i try to execute the program it generates an invalid seesion key exception at line
     friendList1.Friends = facebookService1.friends.getUserObjects();

So then i switched to facebook tool kit 1.0 and .NET 2.0 now it throws a NULL exception at line
    friendList1.Friends = FacebookService1.GetFriends();

can any one please let me know why the above happens?

Finally i have two questions.
1. Does the above facebook application be hosted on some website to see the results for the above sample app?
2. i set the Callback URL to
    http://localhost:3243/testFBapp

and my project in .NET is named as testFBapp. can you please let me know if i configured the callback URL right? Also please let me know the significance of 3243 in the call back URL. looks like its some kind of port no, but i randomly assigned it while deciding on the callback URL.

I would greatly appreciate for any information on this issue, i have already spent a week experimenting with different versions of Facebook toolkit

Thanks a lot,
Raghu.

Offline

 

#131 2009-03-17 23:04:32

eMan
Member
Registered: 2008-07-01
Posts: 54

Re: API currently freaking out?

1. Does the above facebook application be hosted on some website to see the results for the above sample app? 
2. i set the Callback URL to
    http://localhost:3243/testFBapp


I think you havent created a virtual directory. Create a virtual directory. say 'testFBapp'.
Facebook now allows urls starting with local host. so now your call back url  will be http"//localhost/testFBapp
if it does not allow 'localhost' use ur IP addres instead..

Offline

 

#132 2009-03-17 23:07:41

eMan
Member
Registered: 2008-07-01
Posts: 54

Re: API currently freaking out?

One doubt, what windows form got to do with local host?

Offline

 

#133 2009-03-19 22:07:06

raghukisore
Member
Registered: 2009-03-14
Posts: 24

Re: API currently freaking out?

Thanks for the info. I configured a Virtual Directory on my IIS as you suggested. But when i execute my solution in Visual studio, it takes to the log in page of facebook but after the log in process it throws a null exception at line

FacebookService1.GetFriends()
I am not sure why this is happening. do you have any ideas?

Offline

 

#134 2009-03-20 04:35:56

eMan
Member
Registered: 2008-07-01
Posts: 54

Re: API currently freaking out?

I never used any tool kit for my application. So my wild guess would be your session key is empty or invalid.

Offline

 

#135 2009-03-20 10:16:11

streetlogics
Member
Registered: 2008-02-08
Posts: 140

Re: API currently freaking out?

eddyboston wrote:

I'm still seeing problems with sending LiveMessages from the API. I reported the details yesterday in Bug #2632. 
http://bugs.developers.facebook.com/sho … gi?id=2632

You have submitted a duplicate bug.. Please track your progress at the correct bug - http://bugs.developers.facebook.com/sho … gi?id=1327 ( this is an ongoing problem and has been for a while now)

Offline

 

#136 2009-04-05 12:52:29

raghukisore
Member
Registered: 2009-03-14
Posts: 24

Re: API currently freaking out?

Hello Every One,
  I having problem getting even the simple example running. This is my current set up.
1. ASP.NET 2.0
2. Facebook toolkit 1.0
IIS 5.0

and iam developing the application as an ASP.NET website application.

I created a simple application names: testbookappraghu and configured the URLs as
Canvas Callback URL
    http://localhost:4294/testbookappraghu/default.aspx
Canvas URL
    http://apps.facebook.com/testbookappraghu/

created a virtual directory on IIS named testbookappraghu and linked to my Visual studio project folder named testbookappraghu.

Finally the application is nothing but the very basic example that retrieves and display's friend list.
When execute this program it crashes at line

FriendList1.Friends = _fbService.GetFriends();

and throws an error message that says

Requested value '1Ringtorule'emall,1Ringtofind'em,1Ringtobring'emall&inthedarknessbind'em!!!' was not found.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentException: Requested value '1Ringtorule'emall,1Ringtofind'em,1Ringtobring'emall&inthedarknessbind'em!!!' was not found.


I also tried developing it as a desktop application but ended up getting the same error.

I would greatly appreciate if some one could help me debug this problem.
I have already spent about a month trying to get this very simple example running.

Thanks a lot,
Raghu.

Offline

 

#137 2009-04-08 12:07:49

cliffl3
Member
Registered: 2007-11-11
Posts: 31

Re: API currently freaking out?

Is anybody still seeing api issues?  We're seeing significant problems across all our apps still.

Offline

 

#138 2009-04-08 12:18:45

Bar_Code
Member
Registered: 2007-10-24
Posts: 271

Re: API currently freaking out?

This is a very old thread you posted to. But yes, I've seen a number of different issues today. Including getting Facebook messages about "Page not found" when trying to go to an app. After enough tries it works and it's intermittent.
I'm also getting more invalid session errors, even though it's on a page with require_login.

Offline

 

#139 2009-04-08 12:26:46

cliffl3
Member
Registered: 2007-11-11
Posts: 31

Re: API currently freaking out?

Yes - same here. It seems intermittent but overall much worse than yesterday across our apps.  I didn't see any update to the facebook post yesterday so I wasn't sure of the status.

Offline

 

#140 2009-06-19 02:36:16

saidst
Member
Registered: 2009-01-31
Posts: 12

Re: API currently freaking out?

Error: "An existing connection was forcibly closed by the remote host"

I use Nikhil's .net implementation of the API: http://www.nikhilk.net/FacebookNET.aspx

Any idea?

Offline

 

#141 2009-06-19 04:27:56

ChrisDev
Member
Registered: 2009-02-09
Posts: 20

Re: API currently freaking out?

Wow some resumed this old post... but yes.
FB API had massive problemsin the last days !!! And they are not completely solved yet!

Offline

 
  • Home
  •  » API
  •  » API currently freaking out?

Board footer

Powered by PunBB
© Copyright 2002–2005 Rickard Andersson