django-gcm
django-gcm copied to clipboard
apikey project doesn´t work
When checking out the API-key project and attempting to register a device, I get a bad request However, the data passed is OK. This is my first time using Django, I don´t know where to look for further information.
Also, a new ApiKey is not generated upon creating a new user. As far as I can see from the documentation, this should have happened?
OK. Found out that I got this error because my registration was sent as a chunked-encoded message, which apparently ticks off django-gcm mightily. Fixing the upload to a fixed encoded lenght fixes things, but why does it fail in the first place?