How to use the jpush.device_mobile function in jpush

To help you get started, we’ve selected a few jpush examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github jpush / jpush-api-python-client / tests / devices / test_devices.py View on Github external
def test_device_mobile(self):
        reg_id = '1507bfd3f7c466c355c'
        entity = jpush.device_mobile("18588232140")
        result = device.set_devicemobile(reg_id, entity)
        self.assertEqual(result.status_code, 200)
github jpush / jpush-api-python-client / examples / device_examples / example_updevicemobile.py View on Github external
import jpush as jpush
from conf import app_key, master_secret
_jpush = jpush.JPush(app_key, master_secret)
_jpush.set_logging("DEBUG")
device = _jpush.create_device()
reg_id = '1507bfd3f7c466c355c'
entity = jpush.device_mobile("18588232140")
device.set_devicemobile(reg_id, entity)
github jpush / jpush-api-python-client / examples / device_examples / example_updevicemobile.py View on Github external
import jpush as jpush
from examples.conf import app_key, master_secret
_jpush = jpush.JPush(app_key, master_secret)
_jpush.set_logging("DEBUG")
device = _jpush.create_device()
reg_id = '1507bfd3f7c466c355c'
entity = jpush.device_mobile("18588232140")
device.set_devicemobile(reg_id, entity)