1

我在这里找到了如何使用 Django 向 Android 设备发送推送通知(这里是代码)。

所以采用了它,我的代码如下所示:

def sendAndroidPushNotification(registration_id, collapse_key, a, b) :
    try:
        auth = getNewAndroidAuthorizationToken() # this works I'm fetching new token so this is up to date (its length is 267 characters)
        push_request = urllib2.Request("https://android.apis.google.com/c2dm/send")

        data = urllib.urlencode({'data.testA'     : a,
                                 'data.testB'     : b,
                                 'collapse_key'   : collapse_key,
                                 'registration_id': registration_id
                                 })
        push_request.add_data( data )
        push_request.add_header('Authorization', 'GoogleLogin auth=' + auth)
        push_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
        push_request.add_header('Content-Length', len(data))
        urllib2.build_opener().open(push_request)

    except urllib2.HTTPError as e:
        print 'got exception during push notification'
        print 'Reason: "{0}" code: {1}'.format(e.reason, e.code)

        pass

这给了我错误:“原因:“未经授权”代码:401”(有时是 403)。使用httplib.HTTPSConnection而不是urllib2.Request的版本有同样的问题。

它看起来与此处显示的代码几乎相同,所以我完全感到困惑。我做错了什么?


编辑:

以防万一,这是我获取授权令牌的方式(看起来它工作正常),也许我的解析是错误的:

def getNewAndroidAuthorizationToken() :
    request = urllib2.Request("https://www.google.com/accounts/ClientLogin")

    data  = urllib.urlencode({'accountType' : 'HOSTED_OR_GOOGLE',
                              'Email'       : 'someaccount@gmail.com',
                              'Passwd'      : 'asdjsdfa',
                              'service'     : 'ac2dm',
                              'source'      : 'com.mycompany.mypackage',})
    request.add_data(data)

    content = urllib2.build_opener().open(request)

    lines = content.readlines()
    for line in lines :
        if line.find("Auth=")==0 :
            return line[5:]
    return
4

1 回答 1

2

C2DM已弃用。鼓励开发人员切换到GCM, C2DM将在短时间内得到支持。简单的 API,而不是ClientLoginoAuth2不支持的。

http://developer.android.com/guide/google/gcm/index.html

于 2012-06-29T11:20:51.337 回答