Esempio n. 1
0
File: tasks.py Progetto: moment-x/f
def add_friend_push(sender_contact, receiver_token):
    alert = '{}加你好友'.format(sender_contact)
    custom = {
        'type': 'friend',
        'sender': sender_contact,
    }
    cstdict = {'custom': custom}
    msg = qpush.build_ios_msg(alert, cstdict)
    qpush.push_token(msg, receiver_token)
Esempio n. 2
0
File: tasks.py Progetto: moment-x/f
def send_square_push(square_id, sender_contact, receiver_token):
    alert = "{}发你文件".format(sender_contact)
    custom = {"type": "file", "sender": sender_contact, "square_id": square_id}
    cstdict = {"custom": custom}
    msg = qpush.build_ios_msg(alert, cstdict)
    qpush.push_token(msg, receiver_token)