Reputation: 1858
I am running into an issue with my API where I am unable to create a user record/store it in the Google Datastore. I am receiving the JSON response listed below.
Another thing that I found odd was when utilizing the Google APIs Explorer in the top right corner it has a red exclamation point which reads "method requires authorization". It wants me to authorize an OAUTH Scope for user email.
UPDATE: Here is the error log that I was able to get through GAE.
Encountered unexpected error from ProtoRPC method implementation: ServerError (Method PhotoswapAPI.user_create expected response type <class 'photoswap_api_messages.UserCreateResponseMessage'>, sent <type 'NoneType'>)
Traceback (most recent call last):
File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/protorpc-1.0/protorpc/wsgi/service.py", line 181, in protorpc_service_app
response = method(instance, request)
File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/endpoints-1.0/endpoints/api_config.py", line 1332, in invoke_remote
return remote_method(service_instance, request)
File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/protorpc-1.0/protorpc/remote.py", line 419, in invoke_remote_method
type(response)))
ServerError: Method PhotoswapAPI.user_create expected response type <class 'photoswap_api_messages.UserCreateResponseMessage'>, sent <type 'NoneType'>
Does anyone know how to fix this problem where it returns a 503? Am I missing something?
503 Service Unavailable
- Hide headers -
cache-control: private, max-age=0
content-encoding: gzip
content-length: 135
content-type: application/json; charset=UTF-8
date: Sun, 28 Dec 2014 23:23:55 GMT
expires: Sun, 28 Dec 2014 23:23:55 GMT
server: GSE
{
"error": {
"errors": [
{
"domain": "global",
"reason": "backendError",
"message": "Internal Server Error"
}
],
"code": 503,
"message": "Internal Server Error"
}
}
photoswap_api.py
import endpoints
from photoswap_api_messages import UserCreateRequestMessage
from photoswap_api_messages import UserCreateResponseMessage
from protorpc import remote
from models import User
@endpoints.api(name='photoswap', version='v1')
class PhotoswapAPI(remote.Service):
@endpoints.method(UserCreateRequestMessage, UserCreateResponseMessage,
path='user', http_method='POST',
name='user.create')
def user_create(self, request):
entity = User(username=request.username, email=request.email, password=request.password)
entity.put()
APPLICATION = endpoints.api_server([PhotoswapAPI], restricted=False)
photoswap_api_messages.py
from protorpc import messages
class UserCreateRequestMessage:
email = messages.StringField(1)
password = messages.StringField(2)
class UserCreateResponseMessage:
email = messages.StringField(1)
username = messages.StringField(2)
id = messages.IntegerField(3)
models.py
from google.appengine.ext import ndb
TIME_FORMAT_STRING = '%b %d, %Y %I:%M:%S %p'
class User(ndb.Model):
username = ndb.StringProperty(required=True)
email = ndb.StringProperty(required=True)
id = ndb.IntegerProperty()
class Post(ndb.Model):
user_id = ndb.IntegerProperty(required=True)
id = ndb.IntegerProperty(required=True)
desc = ndb.StringProperty(required=False)
main.py
import webapp2
from protorpc import remote
class MainHandler(webapp2.RequestHandler):
def get(self):
self.response.write('Hello world!')
app = webapp2.WSGIApplication([
('/_ah/spi/.*', MainHandler)
], debug=True)
app.yaml
application: caramel-theory-800
version: 1
runtime: python27
threadsafe: true
api_version: 1
handlers:
# Endpoints handler
- url: /_ah/spi/.*
script: photoswap_api.APPLICATION
libraries:
- name: pycrypto
version: latest
- name: endpoints
version: 1.0
Upvotes: 1
Views: 1181
Reputation: 882751
Here:
@endpoints.method(UserCreateRequestMessage, UserCreateResponseMessage,
you're stating the method returns a UserCreateResponseMessage
; but then here:
def user_create(self, request):
entity = User(username=request.username, email=request.email,
password=request.password)
entity.put()
you're returning nothing, that is, returning a None
...
Upvotes: 6