示例#1
0
def example_alias2():
    """Alternatively you can change alias by passing values defined by you."""

    # Define app_id and secret
    my_app_id = 'my_app_id'
    my_secret = 'my_secret'
    # Create a Pushbots instance
    pushbots = Pushbots(app_id=my_app_id, secret=my_secret)
    # Define data
    data = {'platform': Pushbots.PLATFORM_ANDROID, 'alias': 'my_new_alias',
            'current_alias': 'my_current_alias'}
    code, message = pushbots.alias(data=data)
    print('Returned code: {0}'.format(code))
    print('Returned message: {0}'.format(message))
示例#2
0
def example_alias1():
    """Change alias by passing values directly to Pushbots.alias()"""

    # Define app_id and secret
    my_app_id = 'my_app_id'
    my_secret = 'my_secret'
    # Create a Pushbots instance
    pushbots = Pushbots(app_id=my_app_id, secret=my_secret)
    # Define new and current alias and platform
    new_alias = 'my_new_alias'
    old_alias = 'my_current_alias'
    platform = Pushbots.PLATFORM_ANDROID
    code, message = pushbots.alias(platform=platform, alias=new_alias,
                                   current_alias=old_alias)
    print('Returned code: {0}'.format(code))
    print('Returned message: {0}'.format(message))
示例#3
0
def example_alias2():
    """Alternatively you can change alias by passing values defined by you."""

    # Define app_id and secret
    my_app_id = 'my_app_id'
    my_secret = 'my_secret'
    # Create a Pushbots instance
    pushbots = Pushbots(app_id=my_app_id, secret=my_secret)
    # Define data
    data = {
        'platform': Pushbots.PLATFORM_ANDROID,
        'alias': 'my_new_alias',
        'current_alias': 'my_current_alias'
    }
    code, message = pushbots.alias(data=data)
    print('Returned code: {0}'.format(code))
    print('Returned message: {0}'.format(message))
示例#4
0
def example_alias1():
    """Change alias by passing values directly to Pushbots.alias()"""

    # Define app_id and secret
    my_app_id = 'my_app_id'
    my_secret = 'my_secret'
    # Create a Pushbots instance
    pushbots = Pushbots(app_id=my_app_id, secret=my_secret)
    # Define new and current alias and platform
    new_alias = 'my_new_alias'
    old_alias = 'my_current_alias'
    platform = Pushbots.PLATFORM_ANDROID
    code, message = pushbots.alias(platform=platform,
                                   alias=new_alias,
                                   current_alias=old_alias)
    print('Returned code: {0}'.format(code))
    print('Returned message: {0}'.format(message))