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.

Google App Engine is a cloud computing technology for hosting web applications in Google-managed data centers. Google App Engine is a Platform as a Service (PaaS) offering for Java, Python and Go (experimental).

learn more… | top users | synonyms (2)

-2
votes
0answers
36 views

Integrating facebook with Google App Engine [closed]

I started learning Google App Engine recently and want to integrate it with Facebook. I know how to use Facebook JS SDK. But in my application, I need to store user data from Facebook in the database. ...
0
votes
1answer
33 views

JAVA Google App Engine + Facebook API + GSON = Trouble with Javabean

I am trying to get the user's friends list from Facebook. The problem seems to be the Javabean... FBUser fbuser = new Gson().fromJson(jsonStr, FBUser.class); public class FBUser implements ...
0
votes
1answer
95 views

Facebook Chat API - Python App Engine

I'm trying to use the Facebook chat API in my web service(AppEngine Python). I found some code on line, but any of them help me to make it work. This is the code I'm using, but don't work. What I am ...
0
votes
0answers
39 views

Facebook Login - Responded No Email Field

I have web app running in Google App Engine, written in Java. The app allows user to login using their facebook account. The implementation works perfectly but sometimes an error happened and said no ...
-2
votes
0answers
85 views

Facebook Chat API for AppEngine (Python) [closed]

I want to implement Facebook chat in my webserver GAE, using python, but the documentation in Facebook page is not clear and I didn't find on web any tutorial or code at Github. I need to send ...
0
votes
0answers
23 views

App Engine Error with Facebook

I have added an app on facebook tab and i am getting following error Fatal Error: 'hash_hmac' is an unknown function. This error specifically comes in on the following code $signed_request = ...
-1
votes
2answers
54 views

How to store data in my database when the user clicks on the google plus or facebook login tab of my webpage? [closed]

I need the code in Java. I have found it on Javascript and have been unable to store the users information in my database
0
votes
0answers
38 views

Appengine and Facebook, connection issue

This is my first post ever to Stackoverflow. After whole day of googling and reading with no result, I'm only looking forward for solution from you here, In my Appengine app I have these lines in a ...
0
votes
2answers
61 views

Want to make an app that runs continuously, how?

I'm working on an app, and I want it to do the following things: 1) Automatically posts on a user's wall at a specific time (say 11:00am every day) 2) Whenever a post is posted on the user's wall, ...
0
votes
1answer
84 views

Error retrieving Facebook user info using JavaScript SDK

I am trying to retrieve Facebook user info on a web app hosted on Google App Engine. The setup is: 1. web app hosted on the default appspot.com from Google. 2. Have a Facebook app is registered, and ...
2
votes
1answer
106 views

Google Cloud Endpoints with another oAuth2 provider

Is there a way to use another OAuth2 provider with Google Cloud Endpoint? I mean for example, get authentication from Facebook and use it the same way we use Google Account Auth (using gapi js and ...
0
votes
2answers
69 views

Deploying application in GAE

I am new to Google App Engine. I have a problem in deploying an application that previously worked in glassfish server. This application uses Facebook's javascript sdk and Java servlets and jsp's. ...
4
votes
2answers
88 views

Android Facebook app integration with GAE

I'm thinking about how to solve the next problem: An Android App which I want to connect to facebook, and to a Server backend(Srv). Server backend(Srv) which I want to connect to facebook. ...
1
vote
1answer
249 views

Facebook OAuth on Google App Engine with iOS

I am still having trouble finding any sort of tutorials for authenticating a native iOS application with OAuth 2 Facebook on Google App Engine. I realize I might need to use a proxy on GAE (like here: ...
2
votes
1answer
100 views

GAE Python Javascript: How to insert response data from facebook login into the datastore?

So I finished linking the facebook login using the javascript sdk. <script> window.fbAsyncInit = function() { FB.init({ appId: '{{facebook_app_id}}', channelUrl : ...
0
votes
1answer
124 views

facebook-graph sdk cannot handle unicode character

Can facebook-python sdk handle when posting a japanese message. I can post english message without any problem, but when I try to post japanese graph.put_object("me", "feed", message=u'あなたが大好きだよ') ...
1
vote
1answer
106 views

failed to get facebook access_token

This is a part of getting access_token taken from facebook-sdk example. After I get the code, I do exactly following the example as below if self.request.get("code"): ...
2
votes
1answer
119 views

Runtime error when attempting to read *http.Response Body, having used urlfetch.Transport

App Engine does not allow use of DefaultClient, providing the urlfetch service instead. The following minimal example deploys and works pretty much as expected: package app import ( "fmt" ...
1
vote
0answers
61 views

facebook api with Oauth for google app engine

I want to post to user wall from my GAE app. For twitter, I use tweepy, which I can use Oauth, post a tweet. I am looking for any facebook api that can function similar to tweepy.
0
votes
2answers
84 views

cannot import fbconsole, fbconsole install?

I am trying to use fbconsole. The website say pip install fbconsole But I dont have pip, so I use easy_install fbconsole and fbconsole is installed. I check Python directory and there is ...
0
votes
1answer
120 views

iPhone/Facebook/Google App Engine Integration

I am designing an iPhone app which needs the user to login to his/her Facebook account. The app uses GAE (Google App Engine) as the background server (Python), so the problem now is that I don't know ...
2
votes
0answers
44 views

Find out whether Facebook Tab App was invoked by a bot or by a user

Facebook Canvas or Tab App is meant for Facebook users to invoke manually. I see a lot of calls to the app in quick bursts in a short period of time (about 20 to 40 in less than 2 or 3 seconds) ...
0
votes
1answer
82 views

Facebook Login via App Engine

I have an Android client that connectes to an App Engine server via Restlet. I would to incorporate a Facebook login to my application, by dispatching a login request to Facebook from the App Engine ...
1
vote
0answers
71 views

Spring Security 3 + GAE - Do I really need the whole stack?

I was wondering if it's possible to integrate Spring Security 3 into a GAE application without having to bring the whole Spring + Spring MVC stack with it. Every example I've seen so far has Spring ...
1
vote
0answers
76 views

Facebook SDK login to App Engine from iOS

Is the following the right way to go, to login to a backend running App Engine(Could be any) with a Facebook account. Scenario one: Login to facebook Get the token from the Facebook SDK (how do you ...
2
votes
1answer
99 views

Do I need to authenticate user each time user uses my android app

I am creating an android application in which I need to show some data from server as user logged in. We are using facebook login to authenticate user. We are handling session with jsessionid. We ...
0
votes
2answers
605 views

facebook login Server-side Apps with javascript sdk

I have searched stackoverflow for an full example or some blog that explains how to make facebook login Server-side Apps with javascript sdk but didn't find anything. I have searched ...
3
votes
1answer
175 views

Implementing OAuth2 Facebook login without http.Redirect

The following App Engine handler works to the extent that I can obtain a token: func home(w http.ResponseWriter, r *http.Request) { c := appengine.NewContext(r) oaConfig := map ...
0
votes
1answer
101 views

Best facebook graph api wrapper for python to be used on google app engine(GAE)

Is there any facebook graph api wrapper for python/Django to be used on GAE? What are the best practices?
0
votes
2answers
1k views

405 Method Not Allowed The method POST is not allowed for this resource appengine facebook App

I'm doing an app on appengine and it works just fine there .I have the app's URL on facebook canvas url http://xx.appspot.com/yyy/ (with trailing slash) and when the app is called from ...
0
votes
1answer
187 views

facebook data to spreadsheet

some of the questions i have read Scraping a Facebook App for Data Access to facebook data I want to create a spreadsheet that will contain all the diff items that i have in a facebook game, i.e. ...
0
votes
1answer
127 views

Facebook canvas url blank

I have some problems getting canvas url to display for my facebook application that is hosted on google app engine, I'm working with python. On google app engine (www.my-app.appspot.com) everything ...
0
votes
1answer
157 views

Facebook share image or favicon not showing from GAE app redirected link

I have a website hosted on GAE but I use my own domain name have it redirect to my-app.appspot.com. When I facebook share this link, I can't see any image associated with it but when I use share the ...
1
vote
2answers
168 views

Facebook like button on landing page in Google app engine (open graph tags)

I am using GAE as a landing page for my app (to be developed on GAE soon after) I am trying to add social button (twitter, G+, facebook like) It turns out for the FB like, I need to enter open graph ...
0
votes
1answer
125 views

php : Alternate way to upload photo to facebook wall

I use below code to post a photo on wall usually $attachments = array( 'message' => $mess, 'access_token' => $access_token ); ...
1
vote
2answers
165 views

php : Parse json on Google app engine

I use below code to fetch an url, this works successfully, It returns an json data $url = "https://graph.facebook.com/me?access_token=".$access_token; function fetch_url($url){ import ...
4
votes
3answers
307 views

Facebook Registration on Google App Engine

I have looked a bit into using the Facebook Registration for user authentication on my website and I am having trouble finding good examples. I am using python on Google App Engine and wanted to see ...
0
votes
1answer
184 views

Facebook graph api on appengine Invalid Request URL

I have a request to the fb graph api that goes like so: https://graph.facebook.com/?access_token=<ACCESSTOKEN>&fields=id,name,email,installed&ids=<A LONG LONG LIST OF IDS> If ...
0
votes
1answer
179 views

Parsing facebook signed response json

I have a app of google app engine for for java and it have a facebook form which on submitting send a signed_request to a servlet in our app. We are using following code to unencrypt and convert to a ...
1
vote
2answers
167 views

redirecting from xfbml to gwt does not work

I have an application using gwt and hosted on gae. There is a form using xfbml and having a redirect url once data is filled and form is submit. the problem is it throws exception if this happens via ...
0
votes
1answer
228 views

Why is the access token that I pass to appEngine from iOS invalid?

I am working on an iPhone game that maintains a leaderboard and some social interaction through a backend that I built in Google App Engine. The user can log in through facebook in the iPhone app. ...
1
vote
2answers
106 views

'if' element is not in list on Google App Engine

I am building an application for Facebook using Google App Engine. I was trying to compare friends in my user's Facebook account to those already in my application, so I could add them to the database ...
-1
votes
1answer
45 views

Platform options for a Facebook Application? [closed]

I have an idea for a Facebook App, but I'm aware there could be problems with scaling if it becomes popular. Which platforms, for instance Google App Engine, Amazon EC2 are suitable for building a ...
0
votes
1answer
90 views

Transformed image from GAE Images API upload to Facebook

Does anyone know how to convert a GAE Images API Image object into a "file like object"? I'm trying to upload an image that I've transformed from the GAE Images API to Facebook. I'm using the ...
0
votes
0answers
263 views

Facebook Chat on Google App Engine

I am making a Facebook application for chat using the Google App Engine as a platform. I have been looking around, and I am very confused with how to get facebook chat working on the app engine. I ...
0
votes
1answer
268 views

Linking android game to facebook friends who also play

I'm trying to create a card game for the Android platform, which will be played over the network, one turn at a time. I am hoping to use Google App Engine for my server backend, and Google Cloud ...
1
vote
1answer
193 views

Getting cookie=None always in pythonforfacebook appengine example

I am trying to execute the appengineexample of https://github.com/pythonforfacebook/facebook-sdk/. However, my cookie value is always None. I did debug and find that it does carry information however ...
-1
votes
1answer
124 views

Where is Facebook's signed request going? google app engine python

I am really confused, because the documentation states that when a user registers from my website, using a facebook registration form, I am supposed to receive a signed request. I do not know where to ...
-1
votes
1answer
122 views

I can't find the signed request sent from facebook using their registration api in google app engine

I am really confused, because the documentation states that when a user registers from my website, using a facebook registration form, I am supposed to receive a signed request. I do not know where to ...
1
vote
1answer
175 views

Set expiration date of Facebook's Channel file in JSP

I'm developing an HTML app that integrates Facebook Graph API using Javascript SDK. Facebook recommended to use the channel file with the help of PHP, but I'm using Google App Engine and therefore ...

1 2 3 4