示例#1
0
def example_record_analytics2():
    """Record analytics by passing data defined by you to
    Pushbots.record_analytics()
    """

    # 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': '0'}  # '0' is Equivalent to Pushbots.PLATFORM_IOS
    code, message = pushbots.record_analytics(data=data)
    print('Returned code: {0}'.format(code))
    print('Returned message: {0}'.format(message))
示例#2
0
def example_record_analytics2():
    """Record analytics by passing data defined by you to
    Pushbots.record_analytics()
    """

    # 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': '0'}  # '0' is Equivalent to Pushbots.PLATFORM_IOS
    code, message = pushbots.record_analytics(data=data)
    print('Returned code: {0}'.format(code))
    print('Returned message: {0}'.format(message))
示例#3
0
def example_record_analytics1():
    """Record analytics by passing platform directly to
    Pushbots.record_analytics()
    """

    # 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 platform
    platform = Pushbots.PLATFORM_IOS
    code, message = pushbots.record_analytics(platform=platform)
    print('Returned code: {0}'.format(code))
    print('Returned message: {0}'.format(message))
示例#4
0
def example_record_analytics1():
    """Record analytics by passing platform directly to
    Pushbots.record_analytics()
    """

    # 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 platform
    platform = Pushbots.PLATFORM_IOS
    code, message = pushbots.record_analytics(platform=platform)
    print('Returned code: {0}'.format(code))
    print('Returned message: {0}'.format(message))