Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.
from apiclient.discovery import build
from oauth2client.appengine import AppAssertionCredentials
from google.appengine.api import memcache



# global values
datafile = "my_datafile"
model_id = "my_model"
api_key = "my_api_key"

# get credentials
credentials = AppAssertionCredentials(scope='https://www.googleapis.com/auth/prediction')
http = credentials.authorize(httplib2.Http(memcache))
service = build("prediction", "v1.5", http=http, developerKey=api_key)

# predict 
def google_predict(message):
    payload = {'input': {'csvInstance': [message]}}
    result = service.trainedmodels().predict(body=payload, id=model_id).execute()
    return result



...

I spend my time a lot!!! above code is my final code.

but above also represents http401 error with 'invalid credentials' any body have a idea? plz

I use python with django on google app engine

share|improve this question
Are you executing this code from within AppEngine or elsewhere? – bossylobster Nov 22 '12 at 19:18

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.