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.
Apache Tomcat is an open source Servlet Container and is developed by the Apache Software Foundation (ASF).
0
votes
0answers
92 views
grails spring security facebook redirect uri
Do we need any special configuration when running tomcat behind apache?
I have my grails app running on tomcat 8080 behind apache on port 80. When
I do facebook login it fails with the following ...
0
votes
1answer
130 views
getLoginUrl( ) not working / getUser() return 0
$url = 'http://xxxxxx.com:8052/php/myproject/';
$loginUrl = $facebook->getLoginUrl(array(
'scope' => 'publish_stream,email',
'redirect_uri' => $url,
));
$facebook->getUser() will have ...
1
vote
1answer
74 views
Deploy Servlet to Tomcat hosing
I create Facebook JSP Application. I use Restful Java Client Web Services. And created .java file. in this file have Servlet. but can not deploy it into the hosting. I deployed follow
WEB-INF
...
0
votes
3answers
644 views
network is unreacheable
When I try to make a call to facebook via https://graph.facebook.com/oauth/access_token?client_id=xxx&client_secret=xxx8&grant_type=fb_exchange_token&fb_exchange_token=xxxwith HttpClient, ...
-3
votes
1answer
336 views
I should want to publish post from by java web application (tomcat)
I've created a facebook software that allow a web application (tomcat) to publish a post in my wall.
I used facebook-java-api-3.0.2 library and for make this operation ...
0
votes
2answers
753 views
Facebook Graph API returns 403 Forbidden
I'm having a problem using graph API.
My program worked perfectly until two months ago.
And yesterday I ran my program, and it suddenly fails to call graph API.
My server uses HttpPost object to ...
1
vote
0answers
348 views
facebook and ssl page error
I am working on porting over an app to ssl for facebook. I set up an elastic Load balancer to proxy ssl to a tomcat server. when I visit the URL it works in the browser but when I go to facebook it ...
0
votes
2answers
6k views
How can I disable Tomcat caching completly?
I'm having trouble with a site im currently working on.
We are trying to make facebook connect comments widget. The widget loads every time we make a new request that responds with a 200 OK status. ...