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