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.
A feature of HTTP where the same connection is used for multiple requests, speeding up downloading of web pages with multiple resources.
0
votes
1answer
64 views
Facebook graph api and keep alive connections
We want to reduce the https connect latency to facebook graph servers. We have configured our servers to do a http keep alive. However, it looks like the connection gets closed after every call (from ...
0
votes
0answers
90 views
Does Facebook support Keep-Alive?
I'm making ssl encrypted https requests to Facebook using boost::asio. I get the accessToken and try to make a second request on the same socket but can't seem to get it to work. I'm using
...
1
vote
1answer
2k views
login in facebook with python
I can login to facebook with this code. After login I can access a page that requires you to be logged in.
def SignIn(self):
url = 'https://login.facebook.com/login.php?login_attempt=1'
data ...
4
votes
3answers
5k views
Node.js https.request with keep-alive header
I want to pull posts from a users Facebook wall.
The following code snippet works, but it never terminates:
var https = require('https');
facebookWall = function(user) {
var options = {
...
2
votes
0answers
324 views
Why am I seeing keep-alive requests for api.facebook.com in Fiddler without a request to api.facebook.com?
Well, the question is a bit of a lie. My web page does make https: requests to api.facebook.com. But here's what's puzzling me. I open up Fiddler and load my page. My page does make a request to ...