无法使用Django在GCM中发送POST请求

时间:2013-11-08 10:04:25

标签: python django google-cloud-messaging python-requests

这是我的观点:

@csrf_exempt
def send_notification(request):
    message = {"name": "xxxxx","email": "xxxxxx@gmail.com"}
    registration_ids = ['xxxxxxxxxxxxxx']
    post_data = {"data":message,"registration_ids":registration_ids}
    headers = {'Content-Type': 'application/json', 'Authorization':'key=xxxxxx'}
    import requests
    post_response = requests.post(url='https://android.googleapis.com/gcm/send', data=simplejson.dumps(post_data), headers=headers)  
    print post_response
    print simplejson.dumps([post_response.headers, post_response.text])

    to_json = {'status':str(post_response)}
    return HttpResponse(simplejson.dumps(to_json), mimetype='application/json')

服务器日志:

[error] <Response [401]>

输出:

TypeError at /send_notification/

CaseInsensitiveDict(
    {
        "alternate-protocol": "443:quic",
        "x-xss-protection": "1; mode=block",
        "x-content-type-options": "nosniff",
        "transfer-encoding": "chunked",
        "expires": "Fri, 08 Nov 2013 10:29:45 GMT",
        "server": "GSE",
        "cache-control": "private, max-age=0",
        "date": "Fri, 08 Nov 2013 10:29:45 GMT",
        "x-frame-options": "SAMEORIGIN",
        "content-type": "text/html; charset=UTF-8"
   }) is not JSON serializable

我正在使用requests,它只给我上面的一行。

我也尝试过测试一些其他网址!

可能出现什么问题?

1 个答案:

答案 0 :(得分:2)

如果您收到Google的401回复,则授权失败。 documented authorization troubleshooting page说明了这种失败的原因如下:

  
      
  • 缺少授权标头或语法无效。
  •   
  • 作为密钥发送的项目编号无效。
  •   
  • 密钥有效但GCM服务已停用。
  •   
  • 请求来自服务器密钥IP中未列入白名单的服务器。
  •   

确保您的密钥有效,已启用,并且您的IP地址已正确列入白名单。 IP地址是当Django服务器与API联系时Google服务看到的地址。