diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 838f24df..97435def 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -74,9 +74,13 @@ jobs: cp sdk-specifications/features/access/authorization-failure-reporting.feature tests/acceptance/pam cp sdk-specifications/features/access/grant-token.feature tests/acceptance/pam cp sdk-specifications/features/access/revoke-token.feature tests/acceptance/pam + cp sdk-specifications/features/files/file-upload-to-space.feature tests/acceptance/files + cp sdk-specifications/features/history/history-vsp.feature tests/acceptance/history sudo pip3 install -r requirements-dev.txt behave --junit tests/acceptance/pam + behave --junit tests/acceptance/files + behave --junit tests/acceptance/history - name: Expose acceptance tests reports uses: actions/upload-artifact@v3 if: always() diff --git a/.gitignore b/.gitignore index fbfae408..6ad6ef8c 100644 --- a/.gitignore +++ b/.gitignore @@ -77,6 +77,9 @@ _trial_temp # jupyter dev notebook PubNubTwisted.ipynb +# Feature files for acceptance testing. +tests/acceptance/*/*.feature + # GitHub Actions # ################## .github/.release diff --git a/pubnub/endpoints/fetch_messages.py b/pubnub/endpoints/fetch_messages.py index 14773a4b..3883475e 100644 --- a/pubnub/endpoints/fetch_messages.py +++ b/pubnub/endpoints/fetch_messages.py @@ -31,7 +31,9 @@ def __init__(self, pubnub): self._count = None self._include_meta = None self._include_message_actions = None - self._include_message_type = None + self._include_message_type = True + self._include_type = True + self._include_space_id = None self._include_uuid = None def channels(self, channels): @@ -71,13 +73,27 @@ def include_message_type(self, include_message_type): self._include_message_type = include_message_type return self + def include_type(self, include_type): + assert isinstance(include_type, bool) + self._include_type = include_type + return self + def include_uuid(self, include_uuid): assert isinstance(include_uuid, bool) self._include_uuid = include_uuid return self + def include_space_id(self, include_space_id): + assert isinstance(include_space_id, bool) + self._include_space_id = include_space_id + return self + def custom_params(self): - params = {'max': int(self._count)} + params = { + 'max': int(self._count), + 'include_type': 'true' if self._include_type else 'false', + 'include_message_type': 'true' if self._include_message_type else 'false', + } if self._start is not None: params['start'] = str(self._start) @@ -88,8 +104,8 @@ def custom_params(self): if self._include_meta is not None: params['include_meta'] = "true" if self._include_meta else "false" - if self._include_message_type is not None: - params['include_message_type'] = "true" if self._include_message_type else "false" + if self._include_space_id is not None: + params['include_space_id'] = "true" if self._include_space_id else "false" if self.include_message_actions and self._include_uuid is not None: params['include_uuid'] = "true" if self._include_uuid else "false" @@ -154,6 +170,9 @@ def create_response(self, envelope): # pylint: disable=W0221 return PNFetchMessagesResult.from_json( json_input=envelope, include_message_actions=self._include_message_actions, + include_message_type=self._include_message_type, + include_type=self._include_type, + include_space_id=self._include_space_id, start_timetoken=self._start, end_timetoken=self._end) diff --git a/pubnub/endpoints/file_operations/publish_file_message.py b/pubnub/endpoints/file_operations/publish_file_message.py index 55fa8d3c..edfa1b47 100644 --- a/pubnub/endpoints/file_operations/publish_file_message.py +++ b/pubnub/endpoints/file_operations/publish_file_message.py @@ -20,6 +20,8 @@ def __init__(self, pubnub): self._cipher_key = None self._replicate = None self._ptto = None + self._type = None + self._space_id = None def meta(self, meta): self._meta = meta @@ -49,6 +51,14 @@ def file_name(self, file_name): self._file_name = file_name return self + def type(self, type: str): + self._type = type + return self + + def space_id(self, space_id: str): + self._space_id = space_id + return self + def _encrypt_message(self, message): if self._cipher_key or self._pubnub.config.cipher_key: return self._pubnub.config.crypto.encrypt( @@ -87,6 +97,12 @@ def custom_params(self): "ttl": self._ttl, "store": 1 if self._should_store else 0 }) + if self._type: + params['type'] = self._type + + if self._space_id: + params['space-id'] = self._space_id + return params def is_auth_required(self): diff --git a/pubnub/endpoints/file_operations/send_file.py b/pubnub/endpoints/file_operations/send_file.py index ebd29809..5f23594e 100644 --- a/pubnub/endpoints/file_operations/send_file.py +++ b/pubnub/endpoints/file_operations/send_file.py @@ -1,5 +1,4 @@ from pubnub.endpoints.file_operations.file_based_endpoint import FileOperationEndpoint - from pubnub.crypto import PubNubFileCrypto from pubnub.enums import HttpMethod, PNOperationType from pubnub.models.consumer.file import PNSendFileResult @@ -23,6 +22,8 @@ def __init__(self, pubnub): self._file_object = None self._replicate = None self._ptto = None + self._type = None + self._space_id = None def file_object(self, fd): self._file_object = fd @@ -69,7 +70,14 @@ def is_compressable(self): return True def custom_params(self): - return {} + params = {} + if self._type: + params['type'] = str(self._type) + + if self._space_id: + params['space-id'] = self._space_id + + return params def validate_params(self): self.validate_subscribe_key() @@ -110,6 +118,14 @@ def cipher_key(self, cipher_key): self._cipher_key = cipher_key return self + def type(self, type: str): + self._type = type + return self + + def space_id(self, space_id: str): + self._space_id = space_id + return self + def create_response(self, envelope, data=None): return PNSendFileResult(envelope, self._file_upload_envelope) @@ -139,7 +155,9 @@ def sync(self): ttl(self._ttl).\ replicate(self._replicate).\ ptto(self._ptto).\ - cipher_key(self._cipher_key).sync() + cipher_key(self._cipher_key).\ + type(self._type).\ + space_id(self._space_id).sync() response_envelope.result.timestamp = publish_file_response.result.timestamp return response_envelope diff --git a/pubnub/endpoints/pubsub/publish.py b/pubnub/endpoints/pubsub/publish.py index 8fe15ad2..9f910d07 100644 --- a/pubnub/endpoints/pubsub/publish.py +++ b/pubnub/endpoints/pubsub/publish.py @@ -15,7 +15,9 @@ class Publish(Endpoint, TimeTokenOverrideMixin): def __init__(self, pubnub): super(Publish, self).__init__(pubnub) self._channel = None + self._space_id = None self._message = None + self._message_type = None self._should_store = None self._use_post = None self._meta = None @@ -27,10 +29,18 @@ def channel(self, channel): self._channel = str(channel) return self + def space_id(self, space_id: str): + self._space_id = str(space_id) + return self + def message(self, message): self._message = message return self + def message_type(self, message_type: str): + self._message_type = message_type + return self + def use_post(self, use_post): self._use_post = bool(use_post) return self @@ -91,6 +101,12 @@ def custom_params(self): if self.pubnub.config.auth_key is not None: params["auth"] = utils.url_encode(self.pubnub.config.auth_key) + if self._message_type is not None: + params['type'] = self._message_type + + if self._space_id is not None: + params['space-id'] = self._space_id + return params def build_path(self): diff --git a/pubnub/endpoints/signal.py b/pubnub/endpoints/signal.py index feb7ea35..60874e22 100644 --- a/pubnub/endpoints/signal.py +++ b/pubnub/endpoints/signal.py @@ -11,6 +11,8 @@ def __init__(self, pubnub): Endpoint.__init__(self, pubnub) self._channel = None self._message = None + self._space_id = None + self._message_type = None def channel(self, channel): self._channel = str(channel) @@ -20,6 +22,14 @@ def message(self, message): self._message = message return self + def space_id(self, space_id: str): + self._space_id = str(space_id) + return self + + def message_type(self, message_type: str): + self._message_type = message_type + return self + def build_path(self): stringified_message = utils.write_value_as_string(self._message) msg = utils.url_encode(stringified_message) @@ -29,7 +39,15 @@ def build_path(self): ) def custom_params(self): - return {} + params = {} + + if self._message_type is not None: + params['type'] = self._message_type + + if self._space_id is not None: + params['space-id'] = self._space_id + + return params def http_method(self): return HttpMethod.GET diff --git a/pubnub/models/consumer/history.py b/pubnub/models/consumer/history.py index 0d64b5a6..1b5cebcc 100644 --- a/pubnub/models/consumer/history.py +++ b/pubnub/models/consumer/history.py @@ -63,27 +63,15 @@ def __str__(self): return "Fetch messages result for range %d..%d" % (self.start_timetoken, self.end_timetoken) @classmethod - def from_json(cls, json_input, include_message_actions=False, start_timetoken=None, end_timetoken=None): + def from_json(cls, json_input, include_message_actions=False, include_message_type=False, include_type=False, + include_space_id=False, start_timetoken=None, end_timetoken=None): channels = {} for key, entry in json_input['channels'].items(): channels[key] = [] for item in entry: - message = PNFetchMessageItem(item['message'], item['timetoken']) - if 'uuid' in item: - message.uuid = item['uuid'] - if 'message_type' in item: - message.message_type = item['message_type'] - - if 'meta' in item: - message.meta = item['meta'] - - if include_message_actions: - if 'actions' in item: - message.actions = item['actions'] - else: - message.actions = {} - + message = PNFetchMessageItem(item, include_message_actions, include_message_type, include_type, + include_space_id) channels[key].append(message) return PNFetchMessagesResult( @@ -94,11 +82,38 @@ def from_json(cls, json_input, include_message_actions=False, start_timetoken=No class PNFetchMessageItem(object): - def __init__(self, message, timetoken, meta=None, actions=None): - self.message = message - self.meta = meta - self.timetoken = timetoken - self.actions = actions + message = None + meta = None + timetoken = None + actions = None + + def __init__(self, item, include_message_actions, include_message_type, include_type, include_space_id): + self.message = item['message'] + self.timetoken = item['timetoken'] + + if 'uuid' in item: + self.uuid = item['uuid'] + + if 'meta' in item: + self.meta = item['meta'] + + if include_message_actions: + if 'actions' in item: + self.actions = item['actions'] + else: + self.actions = {} + + if include_message_type: + if 'message_type' in item: + self.message_type = str(item['message_type']) if item['message_type'] is not None else '0' + else: + self.message_type = None + + if include_type: + self.type = item['type'] if 'type' in item.keys() else None + + if include_space_id: + self.space_id = item['space_id'] def __str__(self): return "Fetch message item with tt: %s and content: %s" % (self.timetoken, self.message) diff --git a/pubnub/models/consumer/pubsub.py b/pubnub/models/consumer/pubsub.py index a44070af..0e5046d6 100644 --- a/pubnub/models/consumer/pubsub.py +++ b/pubnub/models/consumer/pubsub.py @@ -2,8 +2,8 @@ class PNMessageResult(object): - def __init__(self, message, subscription, channel, timetoken, user_metadata=None, publisher=None): - + def __init__(self, message, subscription, channel, timetoken, user_metadata=None, publisher=None, message_type=None, + type=None, space_id=None): if subscription is not None: assert isinstance(subscription, str) @@ -29,6 +29,9 @@ def __init__(self, message, subscription, channel, timetoken, user_metadata=None self.timetoken = timetoken self.user_metadata = user_metadata self.publisher = publisher + self.message_type = message_type + self.type = type + self.space_id = space_id class PNSignalMessageResult(PNMessageResult): diff --git a/pubnub/models/server/subscribe.py b/pubnub/models/server/subscribe.py index 87793a83..ba2d74b6 100644 --- a/pubnub/models/server/subscribe.py +++ b/pubnub/models/server/subscribe.py @@ -30,6 +30,8 @@ def __init__(self): self.publish_metadata = None self.only_channel_subscription = False self.type = 0 + self.message_type = None + self.space_id = None @classmethod def from_json(cls, json_input): @@ -49,6 +51,18 @@ def from_json(cls, json_input): message.publish_metadata = PublishMetadata.from_json(json_input['p']) if 'e' in json_input: message.type = json_input['e'] + + if 'si' in json_input: + message.space_id = json_input['si'] + + # customers message type set during publish + if 'mt' in json_input: + message.type = json_input['mt'] + + # internal message type (None|0 = message, 1 = file, etc) + if 'e' in json_input: + message.message_type = json_input['mt'] + return message diff --git a/pubnub/workers.py b/pubnub/workers.py index 2eb2de6d..62596dbf 100644 --- a/pubnub/workers.py +++ b/pubnub/workers.py @@ -172,6 +172,9 @@ def _process_incoming_payload(self, message): channel=channel, subscription=subscription_match, timetoken=publish_meta_data.publish_timetoken, - publisher=publisher + publisher=publisher, + message_type=message.message_type, + type=message.type, + space_id=message.space_id ) self._listener_manager.announce_message(pn_message_result) diff --git a/tests/acceptance/files/environment.py b/tests/acceptance/files/environment.py new file mode 100644 index 00000000..22ed3c22 --- /dev/null +++ b/tests/acceptance/files/environment.py @@ -0,0 +1,23 @@ +import requests + +from tests.acceptance import MOCK_SERVER_URL, CONTRACT_INIT_ENDPOINT, CONTRACT_EXPECT_ENDPOINT + + +def before_scenario(context, feature): + for tag in feature.tags: + if "contract" in tag: + _, contract_name = tag.split("=") + response = requests.get(MOCK_SERVER_URL + CONTRACT_INIT_ENDPOINT + contract_name) + assert response + + +def after_scenario(context, feature): + for tag in feature.tags: + if "contract" in tag: + response = requests.get(MOCK_SERVER_URL + CONTRACT_EXPECT_ENDPOINT) + assert response + + response_json = response.json() + + assert not response_json["expectations"]["failed"] + assert not response_json["expectations"]["pending"] diff --git a/tests/acceptance/files/steps/steps.py b/tests/acceptance/files/steps/steps.py new file mode 100644 index 00000000..26e38815 --- /dev/null +++ b/tests/acceptance/files/steps/steps.py @@ -0,0 +1,90 @@ +from behave import given, when, then +from pubnub.exceptions import PubNubException +from tests.helper import pnconf_demo_copy +from pubnub.pubnub import PubNub + + +@given(u'the demo keyset') +def step_impl(context): + config = pnconf_demo_copy() + config.origin = "localhost:8090" + config.ssl = False + pubnub_instance = PubNub(config) + context.peer = pubnub_instance + + +@when(u'I send a file with \'{space_id}\' space id and \'{type}\' type') +def step_impl(context, space_id, type): + try: + with open('tests/acceptance/files/test.txt', 'rb') as file_object: + envelope = context.peer.send_file().channel('test').message('test').should_store(True).ttl(200). \ + file_name('test.txt').file_object(file_object).space_id(space_id).type(type).sync() + context.status = envelope.status + context.result = envelope.result + except PubNubException as error: + context.status = error + + +@then(u'I receive a successful response') +def step_impl(context): + assert context.status.error is None + assert 'file_id' in context.result.__dict__ + + +@then(u'I receive an error response') +def step_impl(context): + assert type(context.status) == PubNubException + + +@when(u'I list files') +def step_impl(context): + envelope = context.peer.list_files().channel('test').sync() + context.status = envelope.status + context.result = envelope.result + + +@then(u'I receive successful response') +def step_impl(context): + assert type(context.status) is PubNubException or context.status.error is None + + +@when(u'I publish file message') +def step_impl(context): + try: + envelope = context.peer.publish_file_message().channel('test').message('test').should_store(True).ttl(200).\ + file_name('test.txt').file_id('1338').sync() + context.status = envelope.status + context.result = envelope.result + except PubNubException as error: + context.status = error + + +@then(u'I receive error response') +def step_impl(context): + assert type(context.status) is PubNubException or context.status.error is True + + +@when(u'I delete file') +def step_impl(context): + envelope = context.peer.delete_file().channel('test').file_name('test.txt').file_id('1338').sync() + context.status = envelope.status + context.result = envelope.result + + +@when(u'I download file') +def step_impl(context): + envelope = context.peer.get_file_url().channel('test').file_name('test.txt').file_id('1338').sync() + context.status = envelope.status + context.result = envelope.result + + +@when(u'I send file') +def step_impl(context): + try: + with open('tests/acceptance/files/test.txt', 'rb') as file_object: + envelope = context.peer.send_file().channel('test').message('test').should_store(True).ttl(200). \ + file_name('test.txt').file_object(file_object).sync() + context.status = envelope.status + context.result = envelope.result + except PubNubException as error: + context.status = error diff --git a/tests/acceptance/files/test.txt b/tests/acceptance/files/test.txt new file mode 100644 index 00000000..f6082981 --- /dev/null +++ b/tests/acceptance/files/test.txt @@ -0,0 +1,3 @@ +Lorem Ipsum Dolor Sit Ament Enim +TG9yZW0gSXBzdW0gRG9sb3IgU2l0IEFtZW50IEVuaW0= +VEc5eVpXMGdTWEJ6ZFcwZ1JHOXNiM0lnVTJsMElFRnRaVzUwSUVWdWFXMD0= \ No newline at end of file diff --git a/tests/acceptance/history/environment.py b/tests/acceptance/history/environment.py new file mode 100644 index 00000000..22ed3c22 --- /dev/null +++ b/tests/acceptance/history/environment.py @@ -0,0 +1,23 @@ +import requests + +from tests.acceptance import MOCK_SERVER_URL, CONTRACT_INIT_ENDPOINT, CONTRACT_EXPECT_ENDPOINT + + +def before_scenario(context, feature): + for tag in feature.tags: + if "contract" in tag: + _, contract_name = tag.split("=") + response = requests.get(MOCK_SERVER_URL + CONTRACT_INIT_ENDPOINT + contract_name) + assert response + + +def after_scenario(context, feature): + for tag in feature.tags: + if "contract" in tag: + response = requests.get(MOCK_SERVER_URL + CONTRACT_EXPECT_ENDPOINT) + assert response + + response_json = response.json() + + assert not response_json["expectations"]["failed"] + assert not response_json["expectations"]["pending"] diff --git a/tests/acceptance/history/steps/given_steps.py b/tests/acceptance/history/steps/given_steps.py new file mode 100644 index 00000000..7ba77553 --- /dev/null +++ b/tests/acceptance/history/steps/given_steps.py @@ -0,0 +1,12 @@ +from behave import given +from tests.helper import pnconf_demo_copy +from pubnub.pubnub import PubNub + + +@given('the demo keyset with enabled storage') +def step_impl(context): + config = pnconf_demo_copy() + config.origin = "localhost:8090" + config.ssl = False + pubnub_instance = PubNub(config) + context.peer = pubnub_instance diff --git a/tests/acceptance/history/steps/then_steps.py b/tests/acceptance/history/steps/then_steps.py new file mode 100644 index 00000000..67f61d79 --- /dev/null +++ b/tests/acceptance/history/steps/then_steps.py @@ -0,0 +1,43 @@ +from behave import then +from pubnub.models.consumer.history import PNFetchMessagesResult + + +@then("I receive a successful response") +def step_impl(context): + assert context.status.error is None + assert type(context.result) == PNFetchMessagesResult + + +@then("history response contains messages with '{type1}' and '{type2}' message types") +def step_impl(context, type1, type2): + assert all(str(item.message_type) in [type1, type2] for item in context.messages) + + +@then('history response contains messages with message types') +def step_impl(context): + assert all('message_type' in item.__dict__.keys() for item in context.messages) + + +@then('history response contains messages without message types') +def step_impl(context): + assert all('message_type' not in item.__dict__.keys() for item in context.messages) + + +@then('history response contains messages without space ids') +def step_impl(context): + assert all('space_id' not in item.__dict__.keys() for item in context.messages) + + +@then('history response contains messages with space ids') +def step_impl(context): + assert all('space_id' in item.__dict__.keys() for item in context.messages) + + +@then("history response contains messages with '{type1}' and '{type2}' types") +def step_impl(context, type1, type2): + assert all(str(item.type) in [type1, type2] for item in context.messages) + + +@then('history response contains messages without types') +def step_impl(context): + assert all('type' not in item.__dict__.keys() for item in context.messages) diff --git a/tests/acceptance/history/steps/when_steps.py b/tests/acceptance/history/steps/when_steps.py new file mode 100644 index 00000000..c50f9430 --- /dev/null +++ b/tests/acceptance/history/steps/when_steps.py @@ -0,0 +1,26 @@ +from behave import when + + +@when("I fetch message history for '{channel}' channel") +def step_impl(context, channel): + envelope = context.peer.fetch_messages().channels(channel).include_message_type(True).include_type(True).sync() + context.status = envelope.status + context.result = envelope.result + context.messages = envelope.result.channels[channel] + + +@when("I fetch message history with '{flag}' set to '{value}' for '{channel}' channel") +def step_impl(context, flag, value, channel): + request = context.peer.fetch_messages().channels(channel) + value = True if value == 'true' else False + if flag == 'includeMessageType': + request.include_message_type(value) + if flag == 'includeType': + request.include_type(value) + if flag == 'includeSpaceId': + request.include_space_id(value) + + envelope = request.sync() + context.status = envelope.status + context.result = envelope.result + context.messages = envelope.result.channels[channel] diff --git a/tests/functional/test_publish.py b/tests/functional/test_publish.py index 70da240d..634eff71 100644 --- a/tests/functional/test_publish.py +++ b/tests/functional/test_publish.py @@ -2,12 +2,11 @@ import unittest -from unittest.mock import MagicMock - from pubnub.endpoints.pubsub.publish import Publish +from pubnub.managers import TelemetryManager from pubnub.pubnub import PubNub from tests.helper import pnconf, sdk_name, url_encode -from pubnub.managers import TelemetryManager +from unittest.mock import MagicMock class TestPublish(unittest.TestCase): @@ -93,6 +92,38 @@ def test_pub_store(self): 'store': '1', }) + def test_pub_with_space_id(self): + message = "hi" + space_id = "test_space" + encoded_message = url_encode(message) + + self.pub.channel("ch1").message(message).space_id(space_id) + + self.assertEqual(self.pub.build_path(), "/publish/%s/%s/0/ch1/0/%s" + % (pnconf.publish_key, pnconf.subscribe_key, encoded_message)) + + self.assertEqual(self.pub.build_params_callback()({}), { + 'space-id': space_id, + 'pnsdk': sdk_name, + 'uuid': self.pubnub.uuid, + }) + + def test_pub_with_message_type(self): + message = "hi" + message_type = 'test_type' + encoded_message = url_encode(message) + + self.pub.channel("ch1").message(message).message_type(message_type) + + self.assertEqual(self.pub.build_path(), "/publish/%s/%s/0/ch1/0/%s" + % (pnconf.publish_key, pnconf.subscribe_key, encoded_message)) + + self.assertEqual(self.pub.build_params_callback()({}), { + 'type': message_type, + 'pnsdk': sdk_name, + 'uuid': self.pubnub.uuid, + }) + def test_pub_do_not_store(self): self.pubnub.uuid = "UUID_PublishUnitTest" diff --git a/tests/functional/test_signal.py b/tests/functional/test_signal.py index 2768d1d1..246c5df6 100644 --- a/tests/functional/test_signal.py +++ b/tests/functional/test_signal.py @@ -1,9 +1,13 @@ import pytest +import unittest from pubnub.pubnub import PubNub from pubnub.exceptions import PubNubException from pubnub.endpoints.signal import Signal -from tests.helper import url_encode, pnconf_copy +from pubnub.managers import TelemetryManager +from tests.helper import url_encode, pnconf_copy, sdk_name +from unittest.mock import MagicMock + pnconf = pnconf_copy() SUB_KEY = pnconf.subscribe_key @@ -28,3 +32,56 @@ def test_signal(): assert signal.build_path() == Signal.SIGNAL_PATH % (PUB_KEY, SUB_KEY, CHAN, MSG_ENCODED) assert 'auth' in signal.build_params_callback()({}) assert AUTH == signal.build_params_callback()({})['auth'] + + +class TestPublish(unittest.TestCase): + def setUp(self): + self.sm = MagicMock( + get_next_sequence=MagicMock(return_value=2) + ) + + self.pubnub = MagicMock( + spec=PubNub, + config=pnconf, + sdk_name=sdk_name, + _publish_sequence_manager=self.sm, + _get_token=lambda: None + ) + + self.pubnub.uuid = "UUID_PublishUnitTest" + self.pubnub._telemetry_manager = TelemetryManager() + self.signal = Signal(self.pubnub) + + def test_signal_with_space_id(self): + message = "hi" + space_id = "test_space" + encoded_message = url_encode(message) + + self.signal.channel("ch1").message(message).space_id(space_id) + + self.assertEqual(self.signal.build_path(), "/signal/%s/%s/0/ch1/0/%s" + % (pnconf.publish_key, pnconf.subscribe_key, encoded_message)) + + self.assertEqual(self.signal.build_params_callback()({}), { + 'auth': 'auth', + 'pnsdk': sdk_name, + 'space-id': space_id, + 'uuid': self.pubnub.uuid, + }) + + def test_signal_with_message_type(self): + message = "hi" + message_type = 'test_type' + encoded_message = url_encode(message) + + self.signal.channel("ch1").message(message).message_type(message_type) + + self.assertEqual(self.signal.build_path(), "/signal/%s/%s/0/ch1/0/%s" + % (pnconf.publish_key, pnconf.subscribe_key, encoded_message)) + + self.assertEqual(self.signal.build_params_callback()({}), { + 'auth': 'auth', + 'pnsdk': sdk_name, + 'type': message_type, + 'uuid': self.pubnub.uuid, + }) diff --git a/tests/helper.py b/tests/helper.py index 6a2b0a2a..f0b8d288 100644 --- a/tests/helper.py +++ b/tests/helper.py @@ -133,7 +133,7 @@ pnconf_env.publish_key = os.environ.get('PN_KEY_PUBLISH') pnconf_env.subscribe_request_timeout = 10 pnconf_env.subscribe_key = os.environ.get('PN_KEY_SUBSCRIBE') -pnconf_env.enable_subscribe = False +pnconf_env.enable_subscribe = True pnconf_env.uuid = uuid_mock # configuration with keys from PN_KEY_* (enabled all except PAM, PUSH and FUNCTIONS) and encryption enabled @@ -142,7 +142,7 @@ pnconf_enc_env.subscribe_request_timeout = 10 pnconf_enc_env.subscribe_key = os.environ.get('PN_KEY_SUBSCRIBE') pnconf_enc_env.cipher_key = "testKey" -pnconf_enc_env.enable_subscribe = False +pnconf_enc_env.enable_subscribe = True pnconf_enc_env.uuid = uuid_mock # configuration with keys from PN_KEY_PAM_* (enabled with all including PAM except PUSH and FUNCTIONS) diff --git a/tests/integrational/asyncio/test_subscribe.py b/tests/integrational/asyncio/test_subscribe.py index 272917b7..9824a28e 100644 --- a/tests/integrational/asyncio/test_subscribe.py +++ b/tests/integrational/asyncio/test_subscribe.py @@ -6,10 +6,11 @@ from unittest.mock import patch from pubnub.models.consumer.pubsub import PNMessageResult from pubnub.pubnub_asyncio import PubNubAsyncio, AsyncioEnvelope, SubscribeListener -from tests.helper import pnconf_sub_copy, pnconf_enc_sub_copy +from tests.helper import pnconf_env_copy, pnconf_enc_env_copy from tests.integrational.vcr_asyncio_sleeper import get_sleeper, VCR599Listener, VCR599ReconnectionManager from tests.integrational.vcr_helper import pn_vcr + pn.set_stream_logger('pubnub', logging.DEBUG) @@ -17,13 +18,13 @@ async def patch_pubnub(pubnub): pubnub._subscription_manager._reconnection_manager = VCR599ReconnectionManager(pubnub) -@pn_vcr.use_cassette('tests/integrational/fixtures/asyncio/subscription/sub_unsub.yaml', - filter_query_parameters=['uuid', 'pnsdk']) +@pn_vcr.use_cassette('tests/integrational/fixtures/asyncio/subscription/sub_unsub.json', + filter_query_parameters=['uuid', 'pnsdk'], serializer='pn_json') @pytest.mark.asyncio async def test_subscribe_unsubscribe(event_loop): channel = "test-subscribe-asyncio-ch" - pubnub = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) + pubnub = PubNubAsyncio(pnconf_env_copy(), custom_event_loop=event_loop) callback = SubscribeListener() pubnub.add_listener(callback) @@ -47,12 +48,12 @@ async def test_subscribe_unsubscribe(event_loop): await pubnub.stop() -@pn_vcr.use_cassette('tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub.yaml', - filter_query_parameters=['pnsdk']) +@pn_vcr.use_cassette('tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub.json', + filter_query_parameters=['pnsdk'], serializer='pn_json') @pytest.mark.asyncio async def test_subscribe_publish_unsubscribe(event_loop): - pubnub_sub = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) - pubnub_pub = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) + pubnub_sub = PubNubAsyncio(pnconf_env_copy(), custom_event_loop=event_loop) + pubnub_pub = PubNubAsyncio(pnconf_env_copy(), custom_event_loop=event_loop) await patch_pubnub(pubnub_sub) await patch_pubnub(pubnub_pub) @@ -96,13 +97,11 @@ async def test_subscribe_publish_unsubscribe(event_loop): await pubnub_sub.stop() -@pn_vcr.use_cassette( - 'tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub_enc.yaml', - filter_query_parameters=['pnsdk'] -) +@pn_vcr.use_cassette('tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub_enc.json', + filter_query_parameters=['pnsdk'], serializer='pn_json') @pytest.mark.asyncio async def test_encrypted_subscribe_publish_unsubscribe(event_loop): - pubnub = PubNubAsyncio(pnconf_enc_sub_copy(), custom_event_loop=event_loop) + pubnub = PubNubAsyncio(pnconf_enc_env_copy(), custom_event_loop=event_loop) pubnub.config.uuid = 'test-subscribe-asyncio-uuid' with patch("pubnub.crypto.PubNubCryptodome.get_initialization_vector", return_value="knightsofni12345"): @@ -141,14 +140,14 @@ async def test_encrypted_subscribe_publish_unsubscribe(event_loop): await pubnub.stop() -@pn_vcr.use_cassette('tests/integrational/fixtures/asyncio/subscription/join_leave.yaml', - filter_query_parameters=['pnsdk', 'l_cg']) +@pn_vcr.use_cassette('tests/integrational/fixtures/asyncio/subscription/join_leave.json', + filter_query_parameters=['pnsdk', 'l_cg'], serializer='pn_json') @pytest.mark.asyncio async def test_join_leave(event_loop): channel = "test-subscribe-asyncio-join-leave-ch" - pubnub = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) - pubnub_listener = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) + pubnub = PubNubAsyncio(pnconf_env_copy(), custom_event_loop=event_loop) + pubnub_listener = PubNubAsyncio(pnconf_env_copy(), custom_event_loop=event_loop) await patch_pubnub(pubnub) await patch_pubnub(pubnub_listener) @@ -194,15 +193,15 @@ async def test_join_leave(event_loop): await pubnub_listener.stop() -@get_sleeper('tests/integrational/fixtures/asyncio/subscription/cg_sub_unsub.yaml') -@pn_vcr.use_cassette('tests/integrational/fixtures/asyncio/subscription/cg_sub_unsub.yaml', - filter_query_parameters=['uuid', 'pnsdk', 'l_cg', 'l_pres']) +@get_sleeper('tests/integrational/fixtures/asyncio/subscription/cg_sub_unsub.json') +@pn_vcr.use_cassette('tests/integrational/fixtures/asyncio/subscription/cg_sub_unsub.json', + filter_query_parameters=['uuid', 'pnsdk', 'l_cg', 'l_pres'], serializer='pn_json') @pytest.mark.asyncio async def test_cg_subscribe_unsubscribe(event_loop, sleeper=asyncio.sleep): ch = "test-subscribe-asyncio-channel" gr = "test-subscribe-asyncio-group" - pubnub = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) + pubnub = PubNubAsyncio(pnconf_env_copy(), custom_event_loop=event_loop) envelope = await pubnub.add_channel_to_channel_group().channel_group(gr).channels(ch).future() assert envelope.status.original_response['status'] == 200 @@ -223,16 +222,16 @@ async def test_cg_subscribe_unsubscribe(event_loop, sleeper=asyncio.sleep): await pubnub.stop() -@get_sleeper('tests/integrational/fixtures/asyncio/subscription/cg_sub_pub_unsub.yaml') -@pn_vcr.use_cassette('tests/integrational/fixtures/asyncio/subscription/cg_sub_pub_unsub.yaml', - filter_query_parameters=['uuid', 'pnsdk', 'l_cg', 'l_pres', 'l_pub']) +@get_sleeper('tests/integrational/fixtures/asyncio/subscription/cg_sub_pub_unsub.json') +@pn_vcr.use_cassette('tests/integrational/fixtures/asyncio/subscription/cg_sub_pub_unsub.json', + filter_query_parameters=['uuid', 'pnsdk', 'l_cg', 'l_pres', 'l_pub'], serializer='pn_json') @pytest.mark.asyncio async def test_cg_subscribe_publish_unsubscribe(event_loop, sleeper=asyncio.sleep): ch = "test-subscribe-asyncio-channel" gr = "test-subscribe-asyncio-group" message = "hey" - pubnub = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) + pubnub = PubNubAsyncio(pnconf_env_copy(), custom_event_loop=event_loop) envelope = await pubnub.add_channel_to_channel_group().channel_group(gr).channels(ch).future() assert envelope.status.original_response['status'] == 200 @@ -267,13 +266,13 @@ async def test_cg_subscribe_publish_unsubscribe(event_loop, sleeper=asyncio.slee await pubnub.stop() -@get_sleeper('tests/integrational/fixtures/asyncio/subscription/cg_join_leave.yaml') -@pn_vcr.use_cassette('tests/integrational/fixtures/asyncio/subscription/cg_join_leave.yaml', - filter_query_parameters=['pnsdk', 'l_cg', 'l_pres']) +@get_sleeper('tests/integrational/fixtures/asyncio/subscription/cg_join_leave.json') +@pn_vcr.use_cassette('tests/integrational/fixtures/asyncio/subscription/cg_join_leave.json', + filter_query_parameters=['pnsdk', 'l_cg', 'l_pres'], serializer='pn_json') @pytest.mark.asyncio async def test_cg_join_leave(event_loop, sleeper=asyncio.sleep): - pubnub = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) - pubnub_listener = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) + pubnub = PubNubAsyncio(pnconf_env_copy(), custom_event_loop=event_loop) + pubnub_listener = PubNubAsyncio(pnconf_env_copy(), custom_event_loop=event_loop) pubnub.config.uuid = "test-subscribe-asyncio-messenger" pubnub_listener.config.uuid = "test-subscribe-asyncio-listener" @@ -334,15 +333,13 @@ async def test_cg_join_leave(event_loop, sleeper=asyncio.sleep): await pubnub_listener.stop() -@get_sleeper('tests/integrational/fixtures/asyncio/subscription/unsubscribe_all.yaml') -@pn_vcr.use_cassette( - 'tests/integrational/fixtures/asyncio/subscription/unsubscribe_all.yaml', - filter_query_parameters=['pnsdk', 'l_cg', 'l_pres'], - match_on=['method', 'scheme', 'host', 'port', 'string_list_in_path', 'string_list_in_query'], -) +@get_sleeper('tests/integrational/fixtures/asyncio/subscription/unsubscribe_all.json') +@pn_vcr.use_cassette('tests/integrational/fixtures/asyncio/subscription/unsubscribe_all.json', + filter_query_parameters=['pnsdk', 'l_cg', 'l_pres'], serializer='pn_json', + match_on=['method', 'scheme', 'host', 'port', 'string_list_in_path', 'string_list_in_query']) @pytest.mark.asyncio async def test_unsubscribe_all(event_loop, sleeper=asyncio.sleep): - pubnub = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) + pubnub = PubNubAsyncio(pnconf_env_copy(), custom_event_loop=event_loop) pubnub.config.uuid = "test-subscribe-asyncio-messenger" @@ -382,3 +379,119 @@ async def test_unsubscribe_all(event_loop, sleeper=asyncio.sleep): assert envelope.status.original_response['status'] == 200 await pubnub.stop() + + +@get_sleeper('tests/integrational/fixtures/asyncio/subscription/publish_space_id.json') +@pn_vcr.use_cassette( + 'tests/integrational/fixtures/asyncio/subscription/publish_space_id.json', serializer='pn_json', + filter_query_parameters=['pnsdk', 'l_cg', 'l_pres'], + match_on=['method', 'scheme', 'host', 'port', 'string_list_in_path', 'string_list_in_query'], +) +@pytest.mark.asyncio +async def test_subscribe_publish_space_id(event_loop, sleeper=asyncio.sleep): + pubnub_sub = PubNubAsyncio(pnconf_env_copy(), custom_event_loop=event_loop) + pubnub_pub = PubNubAsyncio(pnconf_env_copy(), custom_event_loop=event_loop) + + await patch_pubnub(pubnub_sub) + await patch_pubnub(pubnub_pub) + + pubnub_sub.config.uuid = 'test-subscribe-asyncio-uuid-sub' + pubnub_pub.config.uuid = 'test-subscribe-asyncio-uuid-pub' + + callback = VCR599Listener(1) + channel = "test-subscribe-asyncio-ch" + message = "hey" + space_id = "HelloSpace" + pubnub_sub.add_listener(callback) + pubnub_sub.subscribe().channels(channel).execute() + + await callback.wait_for_connect() + + publish_future = asyncio.ensure_future( + pubnub_pub.publish().channel(channel).message(message).space_id(space_id).future() + ) + subscribe_message_future = asyncio.ensure_future(callback.wait_for_message_on(channel)) + + await asyncio.wait([ + publish_future, + subscribe_message_future + ]) + + publish_envelope = publish_future.result() + subscribe_envelope = subscribe_message_future.result() + + assert isinstance(subscribe_envelope, PNMessageResult) + assert subscribe_envelope.channel == channel + assert subscribe_envelope.subscription is None + assert subscribe_envelope.message == message + assert subscribe_envelope.space_id == space_id + assert subscribe_envelope.timetoken > 0 + + assert isinstance(publish_envelope, AsyncioEnvelope) + assert publish_envelope.result.timetoken > 0 + assert publish_envelope.status.original_response[0] == 1 + + pubnub_sub.unsubscribe().channels(channel).execute() + # await callback.wait_for_disconnect() + + await pubnub_pub.stop() + await pubnub_sub.stop() + + +@get_sleeper('tests/integrational/fixtures/asyncio/subscription/publish_message_type.json') +@pn_vcr.use_cassette( + 'tests/integrational/fixtures/asyncio/subscription/publish_message_type.json', serializer='pn_json', + filter_query_parameters=['pnsdk', 'l_cg', 'l_pres'], + match_on=['method', 'scheme', 'host', 'port', 'string_list_in_path', 'string_list_in_query'], +) +@pytest.mark.asyncio +async def test_subscribe_publish_message_type(event_loop, sleeper=asyncio.sleep): + pubnub_sub = PubNubAsyncio(pnconf_env_copy(), custom_event_loop=event_loop) + pubnub_pub = PubNubAsyncio(pnconf_env_copy(), custom_event_loop=event_loop) + + await patch_pubnub(pubnub_sub) + await patch_pubnub(pubnub_pub) + + pubnub_sub.config.uuid = 'test-subscribe-asyncio-uuid-sub' + pubnub_pub.config.uuid = 'test-subscribe-asyncio-uuid-pub' + + callback = VCR599Listener(1) + channel = "test-subscribe-asyncio-ch" + message = "hey" + message_type = "MyOwnCustomMessageType" + pubnub_sub.add_listener(callback) + pubnub_sub.subscribe().channels(channel).execute() + + await callback.wait_for_connect() + + publish_future = asyncio.ensure_future( + pubnub_pub.publish().channel(channel).message(message).message_type(message_type).future() + ) + subscribe_message_future = asyncio.ensure_future(callback.wait_for_message_on(channel)) + + await asyncio.wait([ + publish_future, + subscribe_message_future + ]) + + publish_envelope = publish_future.result() + subscribe_envelope = subscribe_message_future.result() + + assert isinstance(subscribe_envelope, PNMessageResult) + assert subscribe_envelope.channel == channel + assert subscribe_envelope.subscription is None + assert subscribe_envelope.message == message + + assert isinstance(subscribe_envelope.type, str) + assert str(subscribe_envelope.type) == message_type + assert subscribe_envelope.timetoken > 0 + + assert isinstance(publish_envelope, AsyncioEnvelope) + assert publish_envelope.result.timetoken > 0 + assert publish_envelope.status.original_response[0] == 1 + + pubnub_sub.unsubscribe().channels(channel).execute() + # await callback.wait_for_disconnect() + + await pubnub_pub.stop() + await pubnub_sub.stop() diff --git a/tests/integrational/fixtures/asyncio/subscription/cg_join_leave.json b/tests/integrational/fixtures/asyncio/subscription/cg_join_leave.json new file mode 100644 index 00000000..bb2d880e --- /dev/null +++ b/tests/integrational/fixtures/asyncio/subscription/cg_join_leave.json @@ -0,0 +1,455 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-join-leave-cg-group?add=test-subscribe-asyncio-join-leave-cg-channel&uuid=test-subscribe-asyncio-messenger", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:10 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "79" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Storage" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"service\": \"channel-registry\", \"error\": false}" + }, + "url": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-join-leave-cg-group?add=test-subscribe-asyncio-join-leave-cg-channel&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-messenger" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-join-leave-cg-group%2Ctest-subscribe-asyncio-join-leave-cg-group-pnpres&tt=0&uuid=test-subscribe-asyncio-listener", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:11 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "45" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820517289586\",\"r\":42},\"m\":[]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-join-leave-cg-group,test-subscribe-asyncio-join-leave-cg-group-pnpres&tt=0&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-listener" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-join-leave-cg-group%2Ctest-subscribe-asyncio-join-leave-cg-group-pnpres&tr=42&tt=16765820517289586&uuid=test-subscribe-asyncio-listener", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:15 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Encoding": [ + "gzip" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820553092088\",\"r\":42},\"m\":[{\"a\":\"5\",\"f\":0,\"p\":{\"t\":\"16765820553092088\",\"r\":42},\"k\":\"{PN_KEY_SUBSCRIBE}\",\"c\":\"test-subscribe-asyncio-join-leave-cg-channel-pnpres\",\"u\":{\"pn_action\":\"join\",\"pn_uuid\":\"test-subscribe-asyncio-listener\",\"pn_timestamp\":1676582055,\"pn_occupancy\":1,\"pn_ispresence\":1,\"pn_channel\":\"test-subscribe-asyncio-join-leave-cg-channel\"},\"d\":{\"action\":\"join\",\"uuid\":\"test-subscribe-asyncio-listener\",\"timestamp\":1676582055,\"occupancy\":1},\"b\":\"test-subscribe-asyncio-join-leave-cg-group-pnpres\"}]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-join-leave-cg-group,test-subscribe-asyncio-join-leave-cg-group-pnpres&tt=16765820517289586&tr=42&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-listener" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-join-leave-cg-group&tt=0&uuid=test-subscribe-asyncio-messenger", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:15 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "45" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820552860411\",\"r\":42},\"m\":[]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-join-leave-cg-group&tt=0&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-messenger&l_cg=0.1459050178527832" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-join-leave-cg-group%2Ctest-subscribe-asyncio-join-leave-cg-group-pnpres&tr=42&tt=16765820553092088&uuid=test-subscribe-asyncio-listener", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:16 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Encoding": [ + "gzip" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820567808755\",\"r\":42},\"m\":[{\"a\":\"5\",\"f\":0,\"p\":{\"t\":\"16765820567808755\",\"r\":42},\"k\":\"{PN_KEY_SUBSCRIBE}\",\"c\":\"test-subscribe-asyncio-join-leave-cg-channel-pnpres\",\"u\":{\"pn_action\":\"join\",\"pn_uuid\":\"test-subscribe-asyncio-messenger\",\"pn_timestamp\":1676582056,\"pn_occupancy\":2,\"pn_ispresence\":1,\"pn_channel\":\"test-subscribe-asyncio-join-leave-cg-channel\"},\"d\":{\"action\":\"join\",\"uuid\":\"test-subscribe-asyncio-messenger\",\"timestamp\":1676582056,\"occupancy\":2},\"b\":\"test-subscribe-asyncio-join-leave-cg-group-pnpres\"}]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-join-leave-cg-group,test-subscribe-asyncio-join-leave-cg-group-pnpres&tt=16765820553092088&tr=42&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-listener" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/,/leave?channel-group=test-subscribe-asyncio-join-leave-cg-group&uuid=test-subscribe-asyncio-messenger", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:17 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "74" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS, GET, POST" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Presence" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"action\": \"leave\", \"service\": \"Presence\"}" + }, + "url": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/,/leave?channel-group=test-subscribe-asyncio-join-leave-cg-group&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-messenger&l_cg=0.1459050178527832" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-join-leave-cg-group%2Ctest-subscribe-asyncio-join-leave-cg-group-pnpres&tr=42&tt=16765820567808755&uuid=test-subscribe-asyncio-listener", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:18 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Encoding": [ + "gzip" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820584423306\",\"r\":42},\"m\":[{\"a\":\"5\",\"f\":0,\"p\":{\"t\":\"16765820584423306\",\"r\":42},\"k\":\"{PN_KEY_SUBSCRIBE}\",\"c\":\"test-subscribe-asyncio-join-leave-cg-channel-pnpres\",\"u\":{\"pn_action\":\"leave\",\"pn_uuid\":\"test-subscribe-asyncio-messenger\",\"pn_timestamp\":1676582058,\"pn_occupancy\":1,\"pn_ispresence\":1,\"pn_channel\":\"test-subscribe-asyncio-join-leave-cg-channel\"},\"d\":{\"action\":\"leave\",\"uuid\":\"test-subscribe-asyncio-messenger\",\"timestamp\":1676582058,\"occupancy\":1},\"b\":\"test-subscribe-asyncio-join-leave-cg-group-pnpres\"}]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-join-leave-cg-group,test-subscribe-asyncio-join-leave-cg-group-pnpres&tt=16765820567808755&tr=42&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-listener" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/,/leave?channel-group=test-subscribe-asyncio-join-leave-cg-group&uuid=test-subscribe-asyncio-listener", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:18 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "74" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS, GET, POST" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Presence" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"action\": \"leave\", \"service\": \"Presence\"}" + }, + "url": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/,/leave?channel-group=test-subscribe-asyncio-join-leave-cg-group&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-listener" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-join-leave-cg-group?remove=test-subscribe-asyncio-join-leave-cg-channel&uuid=test-subscribe-asyncio-messenger", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:18 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "79" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Storage" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"service\": \"channel-registry\", \"error\": false}" + }, + "url": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-join-leave-cg-group?remove=test-subscribe-asyncio-join-leave-cg-channel&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-messenger&l_cg=0.1459050178527832&l_pres=0.2386610507965088" + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/asyncio/subscription/cg_join_leave.yaml b/tests/integrational/fixtures/asyncio/subscription/cg_join_leave.yaml deleted file mode 100644 index 9410d545..00000000 --- a/tests/integrational/fixtures/asyncio/subscription/cg_join_leave.yaml +++ /dev/null @@ -1,133 +0,0 @@ -interactions: -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-join-leave-cg-group?add=test-subscribe-asyncio-join-leave-cg-channel&uuid=test-subscribe-asyncio-messenger - response: - body: {string: '{"status": 200, "message": "OK", "service": "channel-registry", - "error": false}'} - headers: {ACCEPT-RANGES: bytes, ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - AGE: '0', CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '79', - CONTENT-TYPE: text/javascript; charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:45 - GMT', SERVER: Pubnub} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-join-leave-cg-group?add=test-subscribe-asyncio-join-leave-cg-channel&pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=test-subscribe-asyncio-messenger -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?channel-group=test-subscribe-asyncio-join-leave-cg-group%2Ctest-subscribe-asyncio-join-leave-cg-group-pnpres&tt=0&uuid=test-subscribe-asyncio-listener - response: - body: {string: '{"t":{"t":"14818963663448174","r":12},"m":[]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '45', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:46 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&tt=0&uuid=test-subscribe-asyncio-listener&channel-group=test-subscribe-asyncio-join-leave-cg-group,test-subscribe-asyncio-join-leave-cg-group-pnpres -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?channel-group=test-subscribe-asyncio-join-leave-cg-group%2Ctest-subscribe-asyncio-join-leave-cg-group-pnpres&tr=12&tt=14818963663448174&uuid=test-subscribe-asyncio-listener - response: - body: {string: '{"t":{"t":"14818963671558888","r":12},"m":[{"a":"2","f":0,"p":{"t":"14818963670791786","r":1},"k":"sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe","c":"test-subscribe-asyncio-join-leave-cg-channel-pnpres","d":{"action": - "join", "timestamp": 1481896367, "uuid": "test-subscribe-asyncio-listener", - "occupancy": 1},"b":"test-subscribe-asyncio-join-leave-cg-group-pnpres"}]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '366', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:47 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&tt=14818963663448174&uuid=test-subscribe-asyncio-listener&tr=12&channel-group=test-subscribe-asyncio-join-leave-cg-group,test-subscribe-asyncio-join-leave-cg-group-pnpres -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?channel-group=test-subscribe-asyncio-join-leave-cg-group&tt=0&uuid=test-subscribe-asyncio-messenger - response: - body: {string: '{"t":{"t":"14818963670970002","r":12},"m":[]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '45', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:47 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&tt=0&uuid=test-subscribe-asyncio-messenger&channel-group=test-subscribe-asyncio-join-leave-cg-group -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?channel-group=test-subscribe-asyncio-join-leave-cg-group%2Ctest-subscribe-asyncio-join-leave-cg-group-pnpres&tr=12&tt=14818963671558888&uuid=test-subscribe-asyncio-listener - response: - body: {string: '{"t":{"t":"14818963680969905","r":12},"m":[{"a":"2","f":0,"p":{"t":"14818963680505104","r":2},"k":"sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe","c":"test-subscribe-asyncio-join-leave-cg-channel-pnpres","d":{"action": - "join", "timestamp": 1481896368, "uuid": "test-subscribe-asyncio-messenger", - "occupancy": 2},"b":"test-subscribe-asyncio-join-leave-cg-group-pnpres"}]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '367', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:48 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&tt=14818963671558888&uuid=test-subscribe-asyncio-listener&tr=12&channel-group=test-subscribe-asyncio-join-leave-cg-group,test-subscribe-asyncio-join-leave-cg-group-pnpres -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?channel-group=test-subscribe-asyncio-join-leave-cg-group%2Ctest-subscribe-asyncio-join-leave-cg-group-pnpres&tr=12&tt=14818963680969905&uuid=test-subscribe-asyncio-listener - response: - body: {string: '{"t":{"t":"14818963683554558","r":12},"m":[{"a":"2","f":0,"p":{"t":"14818963682712656","r":1},"k":"sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe","c":"test-subscribe-asyncio-join-leave-cg-channel-pnpres","d":{"action": - "leave", "timestamp": 1481896368, "uuid": "test-subscribe-asyncio-messenger", - "occupancy": 1},"b":"test-subscribe-asyncio-join-leave-cg-group-pnpres"}]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '368', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:48 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&tt=14818963680969905&uuid=test-subscribe-asyncio-listener&tr=12&channel-group=test-subscribe-asyncio-join-leave-cg-group,test-subscribe-asyncio-join-leave-cg-group-pnpres -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/,/leave?channel-group=test-subscribe-asyncio-join-leave-cg-group&uuid=test-subscribe-asyncio-messenger - response: - body: {string: '{"status": 200, "action": "leave", "message": "OK", "service": - "Presence"}'} - headers: {ACCEPT-RANGES: bytes, ACCESS-CONTROL-ALLOW-METHODS: 'OPTIONS, GET, POST', - ACCESS-CONTROL-ALLOW-ORIGIN: '*', AGE: '0', CACHE-CONTROL: no-cache, CONNECTION: keep-alive, - CONTENT-LENGTH: '74', CONTENT-TYPE: text/javascript; charset="UTF-8", DATE: 'Fri, - 16 Dec 2016 13:52:48 GMT', SERVER: Pubnub Presence} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/,/leave?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=test-subscribe-asyncio-messenger&channel-group=test-subscribe-asyncio-join-leave-cg-group -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/,/leave?channel-group=test-subscribe-asyncio-join-leave-cg-group&uuid=test-subscribe-asyncio-listener - response: - body: {string: '{"status": 200, "action": "leave", "message": "OK", "service": - "Presence"}'} - headers: {ACCEPT-RANGES: bytes, ACCESS-CONTROL-ALLOW-METHODS: 'OPTIONS, GET, POST', - ACCESS-CONTROL-ALLOW-ORIGIN: '*', AGE: '0', CACHE-CONTROL: no-cache, CONNECTION: keep-alive, - CONTENT-LENGTH: '74', CONTENT-TYPE: text/javascript; charset="UTF-8", DATE: 'Fri, - 16 Dec 2016 13:52:48 GMT', SERVER: Pubnub Presence} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/,/leave?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=test-subscribe-asyncio-listener&channel-group=test-subscribe-asyncio-join-leave-cg-group -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-join-leave-cg-group?remove=test-subscribe-asyncio-join-leave-cg-channel&uuid=test-subscribe-asyncio-messenger - response: - body: {string: '{"status": 200, "message": "OK", "service": "channel-registry", - "error": false}'} - headers: {ACCEPT-RANGES: bytes, ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - AGE: '0', CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '79', - CONTENT-TYPE: text/javascript; charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:48 - GMT', SERVER: Pubnub} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-join-leave-cg-group?remove=test-subscribe-asyncio-join-leave-cg-channel&pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=test-subscribe-asyncio-messenger -version: 1 diff --git a/tests/integrational/fixtures/asyncio/subscription/cg_sub_pub_unsub.json b/tests/integrational/fixtures/asyncio/subscription/cg_sub_pub_unsub.json new file mode 100644 index 00000000..65eff368 --- /dev/null +++ b/tests/integrational/fixtures/asyncio/subscription/cg_sub_pub_unsub.json @@ -0,0 +1,305 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-group?add=test-subscribe-asyncio-channel", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "79" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Storage" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"service\": \"channel-registry\", \"error\": false}" + }, + "url": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-group?add=test-subscribe-asyncio-channel&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=uuid-mock" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-group&tt=0", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:10 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "45" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765811939707197\",\"r\":42},\"m\":[]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-group&tt=0&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=uuid-mock&l_cg=0.14615392684936523" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/test-subscribe-asyncio-channel/0/%22hey%22?seqn=1", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:10 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16765820504418149\"]" + }, + "url": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/test-subscribe-asyncio-channel/0/%22hey%22?seqn=1&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=uuid-mock&l_cg=0.14615392684936523" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-group&tr=42&tt=16765811939707197", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:10 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Encoding": [ + "gzip" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820504418149\",\"r\":42},\"m\":[{\"a\":\"5\",\"f\":0,\"i\":\"uuid-mock\",\"s\":1,\"p\":{\"t\":\"16765820504418149\",\"r\":43},\"k\":\"{PN_KEY_SUBSCRIBE}\",\"c\":\"test-subscribe-asyncio-channel\",\"d\":\"hey\",\"b\":\"test-subscribe-asyncio-group\"}]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-group&tt=16765811939707197&tr=42&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=uuid-mock&l_cg=0.14615392684936523" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/,/leave?channel-group=test-subscribe-asyncio-group", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:10 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "74" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS, GET, POST" + ], + "Age": [ + "1" + ], + "Server": [ + "Pubnub Presence" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"action\": \"leave\", \"service\": \"Presence\"}" + }, + "url": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/,/leave?channel-group=test-subscribe-asyncio-group&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=uuid-mock&l_cg=0.14615392684936523&l_pub=0.12218379974365234" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-group?remove=test-subscribe-asyncio-channel", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:10 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "79" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Storage" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"service\": \"channel-registry\", \"error\": false}" + }, + "url": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-group?remove=test-subscribe-asyncio-channel&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=uuid-mock&l_cg=0.14615392684936523&l_pub=0.12218379974365234&l_pres=0.03200507164001465" + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/asyncio/subscription/cg_sub_pub_unsub.yaml b/tests/integrational/fixtures/asyncio/subscription/cg_sub_pub_unsub.yaml deleted file mode 100644 index c036b49f..00000000 --- a/tests/integrational/fixtures/asyncio/subscription/cg_sub_pub_unsub.yaml +++ /dev/null @@ -1,86 +0,0 @@ -interactions: -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-group?add=test-subscribe-asyncio-channel - response: - body: {string: '{"status": 200, "message": "OK", "service": "channel-registry", - "error": false}'} - headers: {ACCEPT-RANGES: bytes, ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - AGE: '0', CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '79', - CONTENT-TYPE: text/javascript; charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:43 - GMT', SERVER: Pubnub} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-group?add=test-subscribe-asyncio-channel&pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=816d9356-41d0-4b1d-ba5c-b3488822ab64 -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?channel-group=test-subscribe-asyncio-group&tt=0 - response: - body: {string: '{"t":{"t":"14818963649240210","r":12},"m":[]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '45', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:45 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&tt=0&uuid=816d9356-41d0-4b1d-ba5c-b3488822ab64&channel-group=test-subscribe-asyncio-group -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/test-subscribe-asyncio-channel/0/%22hey%22?seqn=1 - response: - body: {string: '[1,"Sent","14818963650918583"]'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '30', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:45 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/test-subscribe-asyncio-channel/0/%22hey%22?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=816d9356-41d0-4b1d-ba5c-b3488822ab64&seqn=1 -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?channel-group=test-subscribe-asyncio-group&tr=12&tt=14818963649240210 - response: - body: {string: '{"t":{"t":"14818963650918833","r":12},"m":[{"a":"2","f":0,"i":"816d9356-41d0-4b1d-ba5c-b3488822ab64","s":1,"p":{"t":"14818963650918583","r":12},"k":"sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe","c":"test-subscribe-asyncio-channel","d":"hey","b":"test-subscribe-asyncio-group"}]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '277', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:45 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&tt=14818963649240210&uuid=816d9356-41d0-4b1d-ba5c-b3488822ab64&tr=12&channel-group=test-subscribe-asyncio-group -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/,/leave?channel-group=test-subscribe-asyncio-group - response: - body: {string: '{"status": 200, "action": "leave", "message": "OK", "service": - "Presence"}'} - headers: {ACCEPT-RANGES: bytes, ACCESS-CONTROL-ALLOW-METHODS: 'OPTIONS, GET, POST', - ACCESS-CONTROL-ALLOW-ORIGIN: '*', AGE: '0', CACHE-CONTROL: no-cache, CONNECTION: keep-alive, - CONTENT-LENGTH: '74', CONTENT-TYPE: text/javascript; charset="UTF-8", DATE: 'Fri, - 16 Dec 2016 13:52:45 GMT', SERVER: Pubnub Presence} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/,/leave?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=816d9356-41d0-4b1d-ba5c-b3488822ab64&channel-group=test-subscribe-asyncio-group -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-group?remove=test-subscribe-asyncio-channel - response: - body: {string: '{"status": 200, "message": "OK", "service": "channel-registry", - "error": false}'} - headers: {ACCEPT-RANGES: bytes, ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - AGE: '0', CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '79', - CONTENT-TYPE: text/javascript; charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:45 - GMT', SERVER: Pubnub} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-group?remove=test-subscribe-asyncio-channel&pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=816d9356-41d0-4b1d-ba5c-b3488822ab64 -version: 1 diff --git a/tests/integrational/fixtures/asyncio/subscription/cg_sub_unsub.json b/tests/integrational/fixtures/asyncio/subscription/cg_sub_unsub.json new file mode 100644 index 00000000..0140382d --- /dev/null +++ b/tests/integrational/fixtures/asyncio/subscription/cg_sub_unsub.json @@ -0,0 +1,212 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-group?add=test-subscribe-asyncio-channel", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "79" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Storage" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"service\": \"channel-registry\", \"error\": false}" + }, + "url": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-group?add=test-subscribe-asyncio-channel&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=uuid-mock" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-group&tt=0", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "45" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765811939707197\",\"r\":42},\"m\":[]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/,/0?channel-group=test-subscribe-asyncio-group&tt=0&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=uuid-mock&l_cg=0.14452385902404785" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/,/leave?channel-group=test-subscribe-asyncio-group", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "74" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS, GET, POST" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Presence" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"action\": \"leave\", \"service\": \"Presence\"}" + }, + "url": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/,/leave?channel-group=test-subscribe-asyncio-group&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=uuid-mock&l_cg=0.14452385902404785" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-group?remove=test-subscribe-asyncio-channel", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "79" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Storage" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"service\": \"channel-registry\", \"error\": false}" + }, + "url": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-group?remove=test-subscribe-asyncio-channel&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=uuid-mock&l_cg=0.14452385902404785&l_pres=0.20583200454711914" + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/asyncio/subscription/cg_sub_unsub.yaml b/tests/integrational/fixtures/asyncio/subscription/cg_sub_unsub.yaml deleted file mode 100644 index 16cd213c..00000000 --- a/tests/integrational/fixtures/asyncio/subscription/cg_sub_unsub.yaml +++ /dev/null @@ -1,60 +0,0 @@ -interactions: -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-group?add=test-subscribe-asyncio-channel - response: - body: {string: '{"status": 200, "message": "OK", "service": "channel-registry", - "error": false}'} - headers: {ACCEPT-RANGES: bytes, ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - AGE: '0', CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '79', - CONTENT-TYPE: text/javascript; charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:40 - GMT', SERVER: Pubnub} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-group?add=test-subscribe-asyncio-channel&pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=474f7988-1e54-462b-89d4-13e50f26f43c -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?channel-group=test-subscribe-asyncio-group&tt=0 - response: - body: {string: '{"t":{"t":"14818963632209414","r":12},"m":[]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '45', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:43 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/,/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&tt=0&uuid=474f7988-1e54-462b-89d4-13e50f26f43c&channel-group=test-subscribe-asyncio-group -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/,/leave?channel-group=test-subscribe-asyncio-group - response: - body: {string: '{"status": 200, "action": "leave", "message": "OK", "service": - "Presence"}'} - headers: {ACCEPT-RANGES: bytes, ACCESS-CONTROL-ALLOW-METHODS: 'OPTIONS, GET, POST', - ACCESS-CONTROL-ALLOW-ORIGIN: '*', AGE: '0', CACHE-CONTROL: no-cache, CONNECTION: keep-alive, - CONTENT-LENGTH: '74', CONTENT-TYPE: text/javascript; charset="UTF-8", DATE: 'Fri, - 16 Dec 2016 13:52:43 GMT', SERVER: Pubnub Presence} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/,/leave?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=474f7988-1e54-462b-89d4-13e50f26f43c&channel-group=test-subscribe-asyncio-group -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-group?remove=test-subscribe-asyncio-channel - response: - body: {string: '{"status": 200, "message": "OK", "service": "channel-registry", - "error": false}'} - headers: {ACCEPT-RANGES: bytes, ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - AGE: '0', CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '79', - CONTENT-TYPE: text/javascript; charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:43 - GMT', SERVER: Pubnub} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-group?remove=test-subscribe-asyncio-channel&pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=474f7988-1e54-462b-89d4-13e50f26f43c -version: 1 diff --git a/tests/integrational/fixtures/asyncio/subscription/join_leave.json b/tests/integrational/fixtures/asyncio/subscription/join_leave.json new file mode 100644 index 00000000..4f54686f --- /dev/null +++ b/tests/integrational/fixtures/asyncio/subscription/join_leave.json @@ -0,0 +1,347 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?tt=0&uuid=test-subscribe-asyncio-listener", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:13:59 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "45" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820393089705\",\"r\":42},\"m\":[]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?tt=0&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-listener" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?tr=42&tt=16765820393089705&uuid=test-subscribe-asyncio-listener", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:01 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Encoding": [ + "gzip" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820413995457\",\"r\":42},\"m\":[{\"a\":\"5\",\"f\":0,\"p\":{\"t\":\"16765820413995457\",\"r\":42},\"k\":\"{PN_KEY_SUBSCRIBE}\",\"c\":\"test-subscribe-asyncio-join-leave-ch-pnpres\",\"u\":{\"pn_action\":\"join\",\"pn_uuid\":\"test-subscribe-asyncio-listener\",\"pn_timestamp\":1676582041,\"pn_occupancy\":1,\"pn_ispresence\":1,\"pn_channel\":\"test-subscribe-asyncio-join-leave-ch\"},\"d\":{\"action\":\"join\",\"uuid\":\"test-subscribe-asyncio-listener\",\"timestamp\":1676582041,\"occupancy\":1},\"b\":\"test-subscribe-asyncio-join-leave-ch-pnpres\"}]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?tt=16765820393089705&tr=42&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-listener" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-join-leave-ch/0?tt=0&uuid=test-subscribe-asyncio-messenger", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:01 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "45" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820415410273\",\"r\":42},\"m\":[]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-join-leave-ch/0?tt=0&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-messenger" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?tr=42&tt=16765820413995457&uuid=test-subscribe-asyncio-listener", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:04 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Encoding": [ + "gzip" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820449025551\",\"r\":42},\"m\":[{\"a\":\"5\",\"f\":0,\"p\":{\"t\":\"16765820449025551\",\"r\":42},\"k\":\"{PN_KEY_SUBSCRIBE}\",\"c\":\"test-subscribe-asyncio-join-leave-ch-pnpres\",\"u\":{\"pn_action\":\"join\",\"pn_uuid\":\"test-subscribe-asyncio-messenger\",\"pn_timestamp\":1676582044,\"pn_occupancy\":2,\"pn_ispresence\":1,\"pn_channel\":\"test-subscribe-asyncio-join-leave-ch\"},\"d\":{\"action\":\"join\",\"uuid\":\"test-subscribe-asyncio-messenger\",\"timestamp\":1676582044,\"occupancy\":2},\"b\":\"test-subscribe-asyncio-join-leave-ch-pnpres\"}]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?tt=16765820413995457&tr=42&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-listener" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/test-subscribe-asyncio-join-leave-ch/leave?uuid=test-subscribe-asyncio-messenger", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "74" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS, GET, POST" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Presence" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"action\": \"leave\", \"service\": \"Presence\"}" + }, + "url": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/test-subscribe-asyncio-join-leave-ch/leave?pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-messenger" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?tr=42&tt=16765820449025551&uuid=test-subscribe-asyncio-listener", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Encoding": [ + "gzip" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820453949973\",\"r\":42},\"m\":[{\"a\":\"5\",\"f\":0,\"p\":{\"t\":\"16765820453949973\",\"r\":43},\"k\":\"{PN_KEY_SUBSCRIBE}\",\"c\":\"test-subscribe-asyncio-join-leave-ch-pnpres\",\"u\":{\"pn_action\":\"leave\",\"pn_uuid\":\"test-subscribe-asyncio-messenger\",\"pn_timestamp\":1676582045,\"pn_occupancy\":1,\"pn_ispresence\":1,\"pn_channel\":\"test-subscribe-asyncio-join-leave-ch\"},\"d\":{\"action\":\"leave\",\"uuid\":\"test-subscribe-asyncio-messenger\",\"timestamp\":1676582045,\"occupancy\":1},\"b\":\"test-subscribe-asyncio-join-leave-ch-pnpres\"}]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?tt=16765820449025551&tr=42&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-listener" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/test-subscribe-asyncio-join-leave-ch/leave?uuid=test-subscribe-asyncio-listener", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "74" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS, GET, POST" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Presence" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"action\": \"leave\", \"service\": \"Presence\"}" + }, + "url": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/test-subscribe-asyncio-join-leave-ch/leave?pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-listener" + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/asyncio/subscription/join_leave.yaml b/tests/integrational/fixtures/asyncio/subscription/join_leave.yaml deleted file mode 100644 index 483abb07..00000000 --- a/tests/integrational/fixtures/asyncio/subscription/join_leave.yaml +++ /dev/null @@ -1,103 +0,0 @@ -interactions: -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?tt=0&uuid=test-subscribe-asyncio-listener - response: - body: {string: '{"t":{"t":"14818963579052943","r":12},"m":[]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '45', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:38 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=test-subscribe-asyncio-listener&tt=0 -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?tr=12&tt=14818963579052943&uuid=test-subscribe-asyncio-listener - response: - body: {string: '{"t":{"t":"14818963588185526","r":12},"m":[{"a":"2","f":0,"p":{"t":"14818963587725382","r":2},"k":"sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe","c":"test-subscribe-asyncio-join-leave-ch-pnpres","d":{"action": - "join", "timestamp": 1481896358, "uuid": "test-subscribe-asyncio-listener", - "occupancy": 1},"b":"test-subscribe-asyncio-join-leave-ch-pnpres"}]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '352', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:38 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=test-subscribe-asyncio-listener&tr=12&tt=14818963579052943 -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-join-leave-ch/0?tt=0&uuid=test-subscribe-asyncio-messenger - response: - body: {string: '{"t":{"t":"14818963587880346","r":12},"m":[]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '45', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:38 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-join-leave-ch/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=test-subscribe-asyncio-messenger&tt=0 -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?tr=12&tt=14818963588185526&uuid=test-subscribe-asyncio-listener - response: - body: {string: '{"t":{"t":"14818963592503447","r":12},"m":[{"a":"2","f":0,"p":{"t":"14818963592048448","r":2},"k":"sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe","c":"test-subscribe-asyncio-join-leave-ch-pnpres","d":{"action": - "join", "timestamp": 1481896359, "uuid": "test-subscribe-asyncio-messenger", - "occupancy": 2},"b":"test-subscribe-asyncio-join-leave-ch-pnpres"}]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '353', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:39 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=test-subscribe-asyncio-listener&tr=12&tt=14818963588185526 -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?tr=12&tt=14818963592503447&uuid=test-subscribe-asyncio-listener - response: - body: {string: '{"t":{"t":"14818963595693130","r":12},"m":[{"a":"2","f":0,"p":{"t":"14818963594851376","r":1},"k":"sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe","c":"test-subscribe-asyncio-join-leave-ch-pnpres","d":{"action": - "leave", "timestamp": 1481896359, "uuid": "test-subscribe-asyncio-messenger", - "occupancy": 1},"b":"test-subscribe-asyncio-join-leave-ch-pnpres"}]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '354', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:39 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-join-leave-ch,test-subscribe-asyncio-join-leave-ch-pnpres/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=test-subscribe-asyncio-listener&tr=12&tt=14818963592503447 -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/test-subscribe-asyncio-join-leave-ch/leave?uuid=test-subscribe-asyncio-messenger - response: - body: {string: '{"status": 200, "action": "leave", "message": "OK", "service": - "Presence"}'} - headers: {ACCEPT-RANGES: bytes, ACCESS-CONTROL-ALLOW-METHODS: 'OPTIONS, GET, POST', - ACCESS-CONTROL-ALLOW-ORIGIN: '*', AGE: '0', CACHE-CONTROL: no-cache, CONNECTION: keep-alive, - CONTENT-LENGTH: '74', CONTENT-TYPE: text/javascript; charset="UTF-8", DATE: 'Fri, - 16 Dec 2016 13:52:39 GMT', SERVER: Pubnub Presence} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/test-subscribe-asyncio-join-leave-ch/leave?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=test-subscribe-asyncio-messenger -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/test-subscribe-asyncio-join-leave-ch/leave?uuid=test-subscribe-asyncio-listener - response: - body: {string: '{"status": 200, "action": "leave", "message": "OK", "service": - "Presence"}'} - headers: {ACCEPT-RANGES: bytes, ACCESS-CONTROL-ALLOW-METHODS: 'OPTIONS, GET, POST', - ACCESS-CONTROL-ALLOW-ORIGIN: '*', AGE: '0', CACHE-CONTROL: no-cache, CONNECTION: keep-alive, - CONTENT-LENGTH: '74', CONTENT-TYPE: text/javascript; charset="UTF-8", DATE: 'Fri, - 16 Dec 2016 13:52:40 GMT', SERVER: Pubnub Presence} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/test-subscribe-asyncio-join-leave-ch/leave?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=test-subscribe-asyncio-listener -version: 1 diff --git a/tests/integrational/fixtures/asyncio/subscription/publish_message_type.json b/tests/integrational/fixtures/asyncio/subscription/publish_message_type.json new file mode 100644 index 00000000..2fd77e0d --- /dev/null +++ b/tests/integrational/fixtures/asyncio/subscription/publish_message_type.json @@ -0,0 +1,143 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tt=0&uuid=test-subscribe-asyncio-uuid-sub", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:20 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "45" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820605731634\",\"r\":42},\"m\":[]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tt=0&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-sub" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/test-subscribe-asyncio-ch/0/%22hey%22?seqn=1&type=MyOwnCustomMessageType&uuid=test-subscribe-asyncio-uuid-pub", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:20 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16765820608545117\"]" + }, + "url": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/test-subscribe-asyncio-ch/0/%22hey%22?type=MyOwnCustomMessageType&seqn=1&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-pub" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tr=42&tt=16765820605731634&uuid=test-subscribe-asyncio-uuid-sub", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:20 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Encoding": [ + "gzip" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820608545117\",\"r\":42},\"m\":[{\"a\":\"5\",\"f\":0,\"i\":\"test-subscribe-asyncio-uuid-pub\",\"s\":1,\"p\":{\"t\":\"16765820608545117\",\"r\":42},\"k\":\"{PN_KEY_SUBSCRIBE}\",\"c\":\"test-subscribe-asyncio-ch\",\"d\":\"hey\",\"mt\":\"MyOwnCustomMessageType\"}]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tt=16765820605731634&tr=42&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-sub" + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/asyncio/subscription/publish_space_id.json b/tests/integrational/fixtures/asyncio/subscription/publish_space_id.json new file mode 100644 index 00000000..995f3c6e --- /dev/null +++ b/tests/integrational/fixtures/asyncio/subscription/publish_space_id.json @@ -0,0 +1,143 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tt=0&uuid=test-subscribe-asyncio-uuid-sub", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:20 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "45" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820391704607\",\"r\":42},\"m\":[]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tt=0&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-sub" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/test-subscribe-asyncio-ch/0/%22hey%22?seqn=1&space-id=HelloSpace&uuid=test-subscribe-asyncio-uuid-pub", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:20 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16765820605731634\"]" + }, + "url": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/test-subscribe-asyncio-ch/0/%22hey%22?space-id=HelloSpace&seqn=1&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-pub" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tr=42&tt=16765820391704607&uuid=test-subscribe-asyncio-uuid-sub", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:20 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Encoding": [ + "gzip" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820605731634\",\"r\":42},\"m\":[{\"a\":\"5\",\"f\":0,\"i\":\"test-subscribe-asyncio-uuid-pub\",\"s\":1,\"p\":{\"t\":\"16765820605731634\",\"r\":42},\"k\":\"{PN_KEY_SUBSCRIBE}\",\"c\":\"test-subscribe-asyncio-ch\",\"d\":\"hey\",\"si\":\"HelloSpace\"}]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tt=16765820391704607&tr=42&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-sub" + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub.json b/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub.json new file mode 100644 index 00000000..dd96d82b --- /dev/null +++ b/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub.json @@ -0,0 +1,143 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tt=0&uuid=test-subscribe-asyncio-uuid-sub", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:13:58 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "45" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765811318085313\",\"r\":42},\"m\":[]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tt=0&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-sub" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/test-subscribe-asyncio-ch/0/%22hey%22?seqn=1&uuid=test-subscribe-asyncio-uuid-pub", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:13:58 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16765820388465172\"]" + }, + "url": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/test-subscribe-asyncio-ch/0/%22hey%22?seqn=1&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-pub" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tr=42&tt=16765811318085313&uuid=test-subscribe-asyncio-uuid-sub", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:13:58 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Encoding": [ + "gzip" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820388465172\",\"r\":42},\"m\":[{\"a\":\"5\",\"f\":0,\"i\":\"test-subscribe-asyncio-uuid-pub\",\"s\":1,\"p\":{\"t\":\"16765820388465172\",\"r\":42},\"k\":\"{PN_KEY_SUBSCRIBE}\",\"c\":\"test-subscribe-asyncio-ch\",\"d\":\"hey\"}]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tt=16765811318085313&tr=42&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-sub" + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub.yaml b/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub.yaml deleted file mode 100644 index ab10a783..00000000 --- a/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub.yaml +++ /dev/null @@ -1,56 +0,0 @@ -interactions: -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-ch/0?tt=0&uuid=test-subscribe-asyncio-uuid-sub - response: - body: {string: '{"t":{"t":"14818963571353315","r":12},"m":[]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '45', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:37 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-ch/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=test-subscribe-asyncio-uuid-sub&tt=0 -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/test-subscribe-asyncio-ch/0/%22hey%22?seqn=1&uuid=test-subscribe-asyncio-uuid-pub - response: - body: {string: '[1,"Sent","14818963573025400"]'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '30', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:37 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/test-subscribe-asyncio-ch/0/%22hey%22?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=test-subscribe-asyncio-uuid-pub&seqn=1 -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-ch/0?tr=12&tt=14818963571353315&uuid=test-subscribe-asyncio-uuid-sub - response: - body: {string: '{"t":{"t":"14818963573055360","r":12},"m":[{"a":"2","f":0,"i":"test-subscribe-asyncio-uuid-pub","s":1,"p":{"t":"14818963573025400","r":12},"k":"sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe","c":"test-subscribe-asyncio-ch","d":"hey"}]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '232', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:37 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-ch/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=test-subscribe-asyncio-uuid-sub&tr=12&tt=14818963571353315 -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/test-subscribe-asyncio-ch/leave?uuid=test-subscribe-asyncio-uuid-sub - response: - body: {string: '{"status": 200, "action": "leave", "message": "OK", "service": - "Presence"}'} - headers: {ACCEPT-RANGES: bytes, ACCESS-CONTROL-ALLOW-METHODS: 'OPTIONS, GET, POST', - ACCESS-CONTROL-ALLOW-ORIGIN: '*', AGE: '0', CACHE-CONTROL: no-cache, CONNECTION: keep-alive, - CONTENT-LENGTH: '74', CONTENT-TYPE: text/javascript; charset="UTF-8", DATE: 'Fri, - 16 Dec 2016 13:52:37 GMT', SERVER: Pubnub Presence} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/test-subscribe-asyncio-ch/leave?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=test-subscribe-asyncio-uuid-sub -version: 1 diff --git a/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub_enc.json b/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub_enc.json new file mode 100644 index 00000000..19e742f1 --- /dev/null +++ b/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub_enc.json @@ -0,0 +1,197 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tt=0&uuid=test-subscribe-asyncio-uuid", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:13:59 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "45" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820388465172\",\"r\":42},\"m\":[]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tt=0&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/test-subscribe-asyncio-ch/0/%22a25pZ2h0c29mbmkxMjM0Nf61IdsMAvG1F5OWmMXjVxo%3D%22?seqn=1&uuid=test-subscribe-asyncio-uuid", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:13:59 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16765820391704607\"]" + }, + "url": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/test-subscribe-asyncio-ch/0/%22a25pZ2h0c29mbmkxMjM0Nf61IdsMAvG1F5OWmMXjVxo%3D%22?seqn=1&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tr=42&tt=16765820388465172&uuid=test-subscribe-asyncio-uuid", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:13:59 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Encoding": [ + "gzip" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820391704607\",\"r\":42},\"m\":[{\"a\":\"5\",\"f\":0,\"i\":\"test-subscribe-asyncio-uuid\",\"s\":1,\"p\":{\"t\":\"16765820391704607\",\"r\":43},\"k\":\"{PN_KEY_SUBSCRIBE}\",\"c\":\"test-subscribe-asyncio-ch\",\"d\":\"a25pZ2h0c29mbmkxMjM0Nf61IdsMAvG1F5OWmMXjVxo=\"}]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tt=16765820388465172&tr=42&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/test-subscribe-asyncio-ch/leave?l_pub=0.14793705940246582&uuid=test-subscribe-asyncio-uuid", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:13:59 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "74" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS, GET, POST" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Presence" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"action\": \"leave\", \"service\": \"Presence\"}" + }, + "url": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/test-subscribe-asyncio-ch/leave?pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid&l_pub=0.14793705940246582" + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub_enc.yaml b/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub_enc.yaml deleted file mode 100644 index 8d942293..00000000 --- a/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub_enc.yaml +++ /dev/null @@ -1,124 +0,0 @@ -interactions: -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/5.0.1 - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-ch/0?tt=0&uuid=test-subscribe-asyncio-uuid - response: - body: - string: '{"t":{"t":"16148941680182132","r":12},"m":[]}' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '45' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Thu, 04 Mar 2021 21:42:48 GMT - status: - code: 200 - message: OK - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-ch/0?tt=0&pnsdk=PubNub-Python-Asyncio%2F5.0.1&uuid=test-subscribe-asyncio-uuid -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/5.0.1 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/test-subscribe-asyncio-ch/0/%22a25pZ2h0c29mbmkxMjM0Nf61IdsMAvG1F5OWmMXjVxo%3D%22?seqn=1&uuid=test-subscribe-asyncio-uuid - response: - body: - string: '[1,"Sent","16148941682656065"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Thu, 04 Mar 2021 21:42:48 GMT - status: - code: 200 - message: OK - url: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/test-subscribe-asyncio-ch/0/%22a25pZ2h0c29mbmkxMjM0Nf61IdsMAvG1F5OWmMXjVxo%3D%22?seqn=1&pnsdk=PubNub-Python-Asyncio%2F5.0.1&uuid=test-subscribe-asyncio-uuid -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/5.0.1 - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-ch/0?tr=12&tt=16148941680182132&uuid=test-subscribe-asyncio-uuid - response: - body: - string: '{"t":{"t":"16148941682661639","r":12},"m":[{"a":"2","f":0,"i":"test-subscribe-asyncio-uuid","s":1,"p":{"t":"16148941682656065","r":12},"k":"sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe","c":"test-subscribe-asyncio-ch","d":"a25pZ2h0c29mbmkxMjM0Nf61IdsMAvG1F5OWmMXjVxo="}]}' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '269' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Thu, 04 Mar 2021 21:42:48 GMT - status: - code: 200 - message: OK - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-ch/0?tt=16148941680182132&tr=12&pnsdk=PubNub-Python-Asyncio%2F5.0.1&uuid=test-subscribe-asyncio-uuid -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/5.0.1 - method: GET - uri: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/test-subscribe-asyncio-ch/leave?l_pub=0.14426803588867188&uuid=test-subscribe-asyncio-uuid - response: - body: - string: '{"status": 200, "message": "OK", "action": "leave", "service": "Presence"}' - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Methods: - - OPTIONS, GET, POST - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Thu, 04 Mar 2021 21:42:48 GMT - Server: - - Pubnub Presence - status: - code: 200 - message: OK - url: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/test-subscribe-asyncio-ch/leave?pnsdk=PubNub-Python-Asyncio%2F5.0.1&uuid=test-subscribe-asyncio-uuid&l_pub=0.14426803588867188 -version: 1 diff --git a/tests/integrational/fixtures/asyncio/subscription/sub_unsub.json b/tests/integrational/fixtures/asyncio/subscription/sub_unsub.json new file mode 100644 index 00000000..a6f595bc --- /dev/null +++ b/tests/integrational/fixtures/asyncio/subscription/sub_unsub.json @@ -0,0 +1,50 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tt=0", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:13:58 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "45" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765811318085313\",\"r\":42},\"m\":[]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-ch/0?tt=0&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=uuid-mock" + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/asyncio/subscription/sub_unsub.yaml b/tests/integrational/fixtures/asyncio/subscription/sub_unsub.yaml deleted file mode 100644 index fb734ca6..00000000 --- a/tests/integrational/fixtures/asyncio/subscription/sub_unsub.yaml +++ /dev/null @@ -1,30 +0,0 @@ -interactions: -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-ch/0?tt=0 - response: - body: {string: '{"t":{"t":"14818963568306880","r":12},"m":[]}'} - headers: {ACCESS-CONTROL-ALLOW-METHODS: GET, ACCESS-CONTROL-ALLOW-ORIGIN: '*', - CACHE-CONTROL: no-cache, CONNECTION: keep-alive, CONTENT-LENGTH: '45', CONTENT-TYPE: text/javascript; - charset="UTF-8", DATE: 'Fri, 16 Dec 2016 13:52:36 GMT'} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-ch/0?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=fe92df45-c879-449d-a403-90a17bb9e6e6&tt=0 -- request: - body: null - headers: - USER-AGENT: [PubNub-Python-Asyncio/4.0.4] - method: GET - uri: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/test-subscribe-asyncio-ch/leave - response: - body: {string: '{"status": 200, "action": "leave", "message": "OK", "service": - "Presence"}'} - headers: {ACCEPT-RANGES: bytes, ACCESS-CONTROL-ALLOW-METHODS: 'OPTIONS, GET, POST', - ACCESS-CONTROL-ALLOW-ORIGIN: '*', AGE: '0', CACHE-CONTROL: no-cache, CONNECTION: keep-alive, - CONTENT-LENGTH: '74', CONTENT-TYPE: text/javascript; charset="UTF-8", DATE: 'Fri, - 16 Dec 2016 13:52:37 GMT', SERVER: Pubnub Presence} - status: {code: 200, message: OK} - url: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/test-subscribe-asyncio-ch/leave?pnsdk=PubNub-Python-Asyncio%2F4.0.4&uuid=fe92df45-c879-449d-a403-90a17bb9e6e6 -version: 1 diff --git a/tests/integrational/fixtures/asyncio/subscription/unsubscribe_all.json b/tests/integrational/fixtures/asyncio/subscription/unsubscribe_all.json new file mode 100644 index 00000000..eafaefb5 --- /dev/null +++ b/tests/integrational/fixtures/asyncio/subscription/unsubscribe_all.json @@ -0,0 +1,320 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-unsubscribe-all-gr1?add=test-subscribe-asyncio-unsubscribe-all-ch&uuid=test-subscribe-asyncio-messenger", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:18 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "79" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Storage" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"service\": \"channel-registry\", \"error\": false}" + }, + "url": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-unsubscribe-all-gr1?add=test-subscribe-asyncio-unsubscribe-all-ch&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-messenger" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-unsubscribe-all-gr2?add=test-subscribe-asyncio-unsubscribe-all-ch&uuid=test-subscribe-asyncio-messenger", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:18 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "79" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Storage" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"service\": \"channel-registry\", \"error\": false}" + }, + "url": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-unsubscribe-all-gr2?add=test-subscribe-asyncio-unsubscribe-all-ch&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-messenger&l_cg=0.14199328422546387" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-unsubscribe-all-ch1,test-subscribe-asyncio-unsubscribe-all-ch2,test-subscribe-asyncio-unsubscribe-all-ch3/0?channel-group=test-subscribe-asyncio-unsubscribe-all-gr1%2Ctest-subscribe-asyncio-unsubscribe-all-gr2&tt=0&uuid=test-subscribe-asyncio-messenger", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:20 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "45" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "{\"t\":{\"t\":\"16765820599028237\",\"r\":42},\"m\":[]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/{PN_KEY_SUBSCRIBE}/test-subscribe-asyncio-unsubscribe-all-ch1,test-subscribe-asyncio-unsubscribe-all-ch2,test-subscribe-asyncio-unsubscribe-all-ch3/0?channel-group=test-subscribe-asyncio-unsubscribe-all-gr1,test-subscribe-asyncio-unsubscribe-all-gr2&tt=0&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-messenger&l_cg=0.09899413585662842" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/test-subscribe-asyncio-unsubscribe-all-ch1,test-subscribe-asyncio-unsubscribe-all-ch2,test-subscribe-asyncio-unsubscribe-all-ch3/leave?channel-group=test-subscribe-asyncio-unsubscribe-all-gr1%2Ctest-subscribe-asyncio-unsubscribe-all-gr2&uuid=test-subscribe-asyncio-messenger", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:20 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "74" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "OPTIONS, GET, POST" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Presence" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"action\": \"leave\", \"service\": \"Presence\"}" + }, + "url": "https://ps.pndsn.com/v2/presence/sub-key/{PN_KEY_SUBSCRIBE}/channel/test-subscribe-asyncio-unsubscribe-all-ch1,test-subscribe-asyncio-unsubscribe-all-ch2,test-subscribe-asyncio-unsubscribe-all-ch3/leave?channel-group=test-subscribe-asyncio-unsubscribe-all-gr1,test-subscribe-asyncio-unsubscribe-all-gr2&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-messenger&l_cg=0.09899413585662842" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-unsubscribe-all-gr1?remove=test-subscribe-asyncio-unsubscribe-all-ch&uuid=test-subscribe-asyncio-messenger", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:20 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "79" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Storage" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"service\": \"channel-registry\", \"error\": false}" + }, + "url": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-unsubscribe-all-gr1?remove=test-subscribe-asyncio-unsubscribe-all-ch&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-messenger&l_cg=0.09899413585662842&l_pres=0.20037508010864258" + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-unsubscribe-all-gr2?remove=test-subscribe-asyncio-unsubscribe-all-ch&uuid=test-subscribe-asyncio-messenger", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python-Asyncio/7.1.0" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Thu, 16 Feb 2023 21:14:20 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "79" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Age": [ + "0" + ], + "Server": [ + "Pubnub Storage" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ] + }, + "body": { + "string": "{\"status\": 200, \"message\": \"OK\", \"service\": \"channel-registry\", \"error\": false}" + }, + "url": "https://ps.pndsn.com/v1/channel-registration/sub-key/{PN_KEY_SUBSCRIBE}/channel-group/test-subscribe-asyncio-unsubscribe-all-gr2?remove=test-subscribe-asyncio-unsubscribe-all-ch&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-messenger&l_cg=0.08046833674112956&l_pres=0.20037508010864258" + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/asyncio/subscription/unsubscribe_all.yaml b/tests/integrational/fixtures/asyncio/subscription/unsubscribe_all.yaml deleted file mode 100644 index 2bf51469..00000000 --- a/tests/integrational/fixtures/asyncio/subscription/unsubscribe_all.yaml +++ /dev/null @@ -1,210 +0,0 @@ -interactions: -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/4.7.0 - method: GET - uri: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-unsubscribe-all-gr1?add=test-subscribe-asyncio-unsubscribe-all-ch&uuid=test-subscribe-asyncio-messenger - response: - body: - string: '{"status": 200, "message": "OK", "service": "channel-registry", "error": - false}' - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Methods: - - GET, POST, DELETE, OPTIONS - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '79' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Mon, 14 Dec 2020 15:30:51 GMT - Server: - - Pubnub - status: - code: 200 - message: OK - url: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-unsubscribe-all-gr1?add=test-subscribe-asyncio-unsubscribe-all-ch&pnsdk=PubNub-Python-Asyncio%2F4.7.0&uuid=test-subscribe-asyncio-messenger -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/4.7.0 - method: GET - uri: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-unsubscribe-all-gr2?add=test-subscribe-asyncio-unsubscribe-all-ch&uuid=test-subscribe-asyncio-messenger - response: - body: - string: '{"status": 200, "message": "OK", "service": "channel-registry", "error": - false}' - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Methods: - - GET, POST, DELETE, OPTIONS - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '79' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Mon, 14 Dec 2020 15:30:51 GMT - Server: - - Pubnub - status: - code: 200 - message: OK - url: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-unsubscribe-all-gr2?add=test-subscribe-asyncio-unsubscribe-all-ch&pnsdk=PubNub-Python-Asyncio%2F4.7.0&uuid=test-subscribe-asyncio-messenger&l_cg=0.17911815643310547 -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/4.7.0 - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-unsubscribe-all-ch1,test-subscribe-asyncio-unsubscribe-all-ch2,test-subscribe-asyncio-unsubscribe-all-ch3/0?channel-group=test-subscribe-asyncio-unsubscribe-all-gr1%2Ctest-subscribe-asyncio-unsubscribe-all-gr2&tt=0&uuid=test-subscribe-asyncio-messenger - response: - body: - string: '{"t":{"t":"16079598526833689","r":12},"m":[]}' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '45' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Mon, 14 Dec 2020 15:30:52 GMT - status: - code: 200 - message: OK - url: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-unsubscribe-all-ch1,test-subscribe-asyncio-unsubscribe-all-ch2,test-subscribe-asyncio-unsubscribe-all-ch3/0?channel-group=test-subscribe-asyncio-unsubscribe-all-gr1,test-subscribe-asyncio-unsubscribe-all-gr2&tt=0&pnsdk=PubNub-Python-Asyncio%2F4.7.0&uuid=test-subscribe-asyncio-messenger&l_cg=0.11011052131652832 -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/4.7.0 - method: GET - uri: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/test-subscribe-asyncio-unsubscribe-all-ch1,test-subscribe-asyncio-unsubscribe-all-ch2,test-subscribe-asyncio-unsubscribe-all-ch3/leave?channel-group=test-subscribe-asyncio-unsubscribe-all-gr1%2Ctest-subscribe-asyncio-unsubscribe-all-gr2&uuid=test-subscribe-asyncio-messenger - response: - body: - string: '{"status": 200, "message": "OK", "action": "leave", "service": "Presence"}' - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Methods: - - OPTIONS, GET, POST - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Mon, 14 Dec 2020 15:30:53 GMT - Server: - - Pubnub Presence - status: - code: 200 - message: OK - url: https://ps.pndsn.com/v2/presence/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/test-subscribe-asyncio-unsubscribe-all-ch1,test-subscribe-asyncio-unsubscribe-all-ch2,test-subscribe-asyncio-unsubscribe-all-ch3/leave?channel-group=test-subscribe-asyncio-unsubscribe-all-gr1,test-subscribe-asyncio-unsubscribe-all-gr2&pnsdk=PubNub-Python-Asyncio%2F4.7.0&uuid=test-subscribe-asyncio-messenger&l_cg=0.11011052131652832 -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/4.7.0 - method: GET - uri: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-unsubscribe-all-gr1?remove=test-subscribe-asyncio-unsubscribe-all-ch&uuid=test-subscribe-asyncio-messenger - response: - body: - string: '{"status": 200, "message": "OK", "service": "channel-registry", "error": - false}' - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Methods: - - GET, POST, DELETE, OPTIONS - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '79' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Mon, 14 Dec 2020 15:30:53 GMT - Server: - - Pubnub - status: - code: 200 - message: OK - url: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-unsubscribe-all-gr1?remove=test-subscribe-asyncio-unsubscribe-all-ch&pnsdk=PubNub-Python-Asyncio%2F4.7.0&uuid=test-subscribe-asyncio-messenger&l_cg=0.11011052131652832&l_pres=0.5682003498077393 -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/4.7.0 - method: GET - uri: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-unsubscribe-all-gr2?remove=test-subscribe-asyncio-unsubscribe-all-ch&uuid=test-subscribe-asyncio-messenger - response: - body: - string: '{"status": 200, "message": "OK", "service": "channel-registry", "error": - false}' - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Methods: - - GET, POST, DELETE, OPTIONS - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '79' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Mon, 14 Dec 2020 15:30:53 GMT - Server: - - Pubnub - status: - code: 200 - message: OK - url: https://ps.pndsn.com/v1/channel-registration/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel-group/test-subscribe-asyncio-unsubscribe-all-gr2?remove=test-subscribe-asyncio-unsubscribe-all-ch&pnsdk=PubNub-Python-Asyncio%2F4.7.0&uuid=test-subscribe-asyncio-messenger&l_cg=0.08846743901570638&l_pres=0.5682003498077393 -version: 1 diff --git a/tests/integrational/fixtures/native_sync/fetch_messages/include_message_type.json b/tests/integrational/fixtures/native_sync/fetch_messages/include_message_type.json new file mode 100644 index 00000000..2086d189 --- /dev/null +++ b/tests/integrational/fixtures/native_sync/fetch_messages/include_message_type.json @@ -0,0 +1,120 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-message-type/0/%22hey-type%22?seqn=1", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Wed, 08 Mar 2023 14:34:08 GMT" + ], + "Content-Length": [ + "30" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Connection": [ + "keep-alive" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782860489406273\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v3/history-with-actions/sub-key/{PN_KEY_SUBSCRIBE}/channel/fetch-messages-message-type?include_message_type=true&include_meta=false&include_type=true&max=25", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Wed, 08 Mar 2023 14:34:18 GMT" + ], + "Content-Length": [ + "192" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Ranges": [ + "bytes" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Age": [ + "0" + ], + "Access-Control-Allow-Credentials": [ + "true" + ], + "Connection": [ + "keep-alive" + ] + }, + "body": { + "string": "{\"status\": 200, \"channels\": {\"fetch-messages-message-type\": [{\"message_type\": null, \"message\": \"hey-type\", \"timetoken\": \"16782860489406273\", \"type\": \"\"}]}, \"error_message\": \"\", \"error\": false}" + } + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/native_sync/fetch_messages/include_message_type.yaml b/tests/integrational/fixtures/native_sync/fetch_messages/include_message_type.yaml deleted file mode 100644 index 539b02c8..00000000 --- a/tests/integrational/fixtures/native_sync/fetch_messages/include_message_type.yaml +++ /dev/null @@ -1,78 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/6.2.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-types/0/%22hey-type%22?seqn=1 - response: - body: - string: '[1,"Sent","16485850413471824"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Tue, 29 Mar 2022 20:17:21 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/6.2.0 - method: GET - uri: https://ps.pndsn.com/v3/history-with-actions/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/fetch-messages-types?include_message_type=true&include_meta=false&max=25 - response: - body: - string: '{"status": 200, "channels": {"fetch-messages-types": [{"message": "hey-type", - "timetoken": "16485843895487893", "message_type": "1"}]}, "error_message": - "", "error": false}' - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, DELETE, OPTIONS - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '335' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Tue, 29 Mar 2022 20:17:22 GMT - status: - code: 200 - message: OK -version: 1 diff --git a/tests/integrational/fixtures/native_sync/fetch_messages/include_meta.json b/tests/integrational/fixtures/native_sync/fetch_messages/include_meta.json new file mode 100644 index 00000000..1913fbcd --- /dev/null +++ b/tests/integrational/fixtures/native_sync/fetch_messages/include_meta.json @@ -0,0 +1,173 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-meta-2/0/%22hey-meta%22?meta=%7B%22is-this%22%3A+%22krusty-krab%22%7D&seqn=1", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Connection": [ + "keep-alive" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Date": [ + "Wed, 08 Mar 2023 13:58:47 GMT" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782839273993377\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-meta-2/0/%22hey-meta%22?meta=%7B%22this-is%22%3A+%22patrick%22%7D&seqn=2", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Connection": [ + "keep-alive" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Date": [ + "Wed, 08 Mar 2023 13:58:47 GMT" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782839274412428\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v3/history-with-actions/sub-key/{PN_KEY_SUBSCRIBE}/channel/fetch-messages-actions-meta-2?include_message_type=true&include_meta=true&include_type=true&max=25", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Content-Encoding": [ + "gzip" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Date": [ + "Wed, 08 Mar 2023 13:58:47 GMT" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Age": [ + "0" + ], + "Access-Control-Allow-Credentials": [ + "true" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAA6RPSwqDQAy9SsnaAT+gY69SiqQS66AdyyQuRLx7M9aFy0J3ycv7ZQUWlJnhesnTNLlA26P3NEZghY6k7c2LmPFJbLAVN3lWQNDkyritIMubdAJQ7UGMa0/LTouwOBVMA/l4yMrK5qWtyswWNiuK7CRsDjM/j+NuJ6iSFRwb6V2sBEOYWRYzBHzAtiV6/KNAlVe2rn8oENPNt8AbJbh20PC7xgOFMIXm9Hh020Ft2+HItH0AAAD//wMAQWkka2MBAAA=" + } + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/native_sync/fetch_messages/include_meta.yaml b/tests/integrational/fixtures/native_sync/fetch_messages/include_meta.yaml deleted file mode 100644 index dbf60e84..00000000 --- a/tests/integrational/fixtures/native_sync/fetch_messages/include_meta.yaml +++ /dev/null @@ -1,113 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/6.2.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-meta-1/0/%22hey-meta%22?meta=%7B%22is-this%22%3A+%22krusty-krab%22%7D&seqn=1 - response: - body: - string: '[1,"Sent","16485817254069189"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Tue, 29 Mar 2022 19:22:05 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/6.2.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-meta-1/0/%22hey-meta%22?meta=%7B%22this-is%22%3A+%22patrick%22%7D&seqn=2 - response: - body: - string: '[1,"Sent","16485817254397299"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Tue, 29 Mar 2022 19:22:05 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/6.2.0 - method: GET - uri: https://ps.pndsn.com/v3/history-with-actions/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/fetch-messages-actions-meta-1?include_meta=true&max=25 - response: - body: - string: '{"status": 200, "channels": {"fetch-messages-actions-meta-1": [{"message": - "hey-meta", "timetoken": "16485817079213403", "meta": {"is-this": "krusty-krab"}}, - {"message": "hey-meta", "timetoken": "16485817079522020", "meta": {"this-is": - "patrick"}}]}, "error_message": "", "error": false}' - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, DELETE, OPTIONS - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '287' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Tue, 29 Mar 2022 19:22:05 GMT - status: - code: 200 - message: OK -version: 1 diff --git a/tests/integrational/fixtures/native_sync/fetch_messages/include_uuid.json b/tests/integrational/fixtures/native_sync/fetch_messages/include_uuid.json new file mode 100644 index 00000000..aedea287 --- /dev/null +++ b/tests/integrational/fixtures/native_sync/fetch_messages/include_uuid.json @@ -0,0 +1,173 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-uuid/0/%22hey-uuid-1%22?seqn=1", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687621997385\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-uuid/0/%22hey-uuid-2%22?seqn=2", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687622453988\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v3/history-with-actions/sub-key/{PN_KEY_SUBSCRIBE}/channel/fetch-messages-actions-uuid?include_message_type=true&include_meta=false&include_type=true&include_uuid=true&max=25", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Age": [ + "0" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Credentials": [ + "true" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:03 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Encoding": [ + "gzip" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAA5SPTQqDMBCFryKzNqCxauxVSpFgxyqNUcxkIeLdO7EuShel3Q3fG97PCo40eQfnSCZJHEHTaWvRBLBCi9R0YkDn9B2d0A31o3XC+/7G+mWFQ6ppmZCJ9cawx0EZQIfL/i5SYIH6AWl8oA1SWpRKFqosZFpVZaby/eNlBOE+Yj5bBMx2W8wFf8+XX/LlKc8qpf7Jl7BduQHgPI9z/TY4mOyQJ7baONyeAAAA//8DANaM4J5jAQAA" + } + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/native_sync/fetch_messages/include_uuid.yaml b/tests/integrational/fixtures/native_sync/fetch_messages/include_uuid.yaml deleted file mode 100644 index afbe36bd..00000000 --- a/tests/integrational/fixtures/native_sync/fetch_messages/include_uuid.yaml +++ /dev/null @@ -1,113 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/6.2.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-uuid/0/%22hey-uuid-1%22?seqn=1 - response: - body: - string: '[1,"Sent","16485843882209571"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Tue, 29 Mar 2022 20:06:28 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/6.2.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-uuid/0/%22hey-uuid-2%22?seqn=2 - response: - body: - string: '[1,"Sent","16485843882539012"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Tue, 29 Mar 2022 20:06:28 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/6.2.0 - method: GET - uri: https://ps.pndsn.com/v3/history-with-actions/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/fetch-messages-actions-uuid?include_meta=false&include_uuid=true&max=25 - response: - body: - string: '{"status": 200, "channels": {"fetch-messages-actions-uuid": [{"message": - "hey-meta-1", "timetoken": "16485839292889892", "uuid": "fetch-messages-uuid-1"}, - {"message": "hey-meta-2", "timetoken": "16485839293220109", "uuid": "fetch-messages-uuid-2"}]}, - "error_message": "", "error": false}' - headers: - Accept-Ranges: - - bytes - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, DELETE, OPTIONS - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '475' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Tue, 29 Mar 2022 20:06:29 GMT - status: - code: 200 - message: OK -version: 1 diff --git a/tests/integrational/fixtures/native_sync/fetch_messages/max_100_single.json b/tests/integrational/fixtures/native_sync/fetch_messages/max_100_single.json new file mode 100644 index 00000000..1467bf1a --- /dev/null +++ b/tests/integrational/fixtures/native_sync/fetch_messages/max_100_single.json @@ -0,0 +1,6489 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-0%22?seqn=1", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687382154720\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-1%22?seqn=2", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687382579630\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-2%22?seqn=3", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687382950094\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-3%22?seqn=4", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687383305718\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-4%22?seqn=5", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687383660635\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-5%22?seqn=6", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687384043774\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-6%22?seqn=7", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687384413041\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-7%22?seqn=8", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687384782110\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-8%22?seqn=9", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687385142568\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-9%22?seqn=10", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687385524442\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-10%22?seqn=11", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687385891506\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-11%22?seqn=12", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687386258959\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-12%22?seqn=13", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687386632337\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-13%22?seqn=14", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687387011468\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-14%22?seqn=15", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687387379536\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-15%22?seqn=16", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687387761350\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-16%22?seqn=17", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687388130121\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-17%22?seqn=18", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687388513538\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-18%22?seqn=19", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687388895730\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-19%22?seqn=20", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687389262790\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-20%22?seqn=21", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687389652874\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-21%22?seqn=22", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687390024629\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-22%22?seqn=23", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687390407506\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-23%22?seqn=24", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687390785595\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-24%22?seqn=25", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687391156657\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-25%22?seqn=26", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687391525496\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-26%22?seqn=27", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687391930545\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-27%22?seqn=28", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687392322887\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-28%22?seqn=29", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687392728348\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-29%22?seqn=30", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687393146130\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-30%22?seqn=31", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687393543094\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-31%22?seqn=32", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687393969948\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-32%22?seqn=33", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687394348209\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-33%22?seqn=34", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687394733167\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-34%22?seqn=35", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687395135694\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-35%22?seqn=36", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687395517613\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-36%22?seqn=37", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687395899545\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-37%22?seqn=38", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687396290561\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-38%22?seqn=39", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687396673168\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-39%22?seqn=40", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687397067069\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-40%22?seqn=41", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687397462695\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-41%22?seqn=42", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687397855089\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-42%22?seqn=43", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687398255408\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-43%22?seqn=44", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687398638271\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-44%22?seqn=45", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687399048691\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-45%22?seqn=46", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687399543093\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-46%22?seqn=47", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687399988252\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-47%22?seqn=48", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687400405788\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-48%22?seqn=49", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687400814396\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-49%22?seqn=50", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687401237801\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-50%22?seqn=51", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687401630647\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-51%22?seqn=52", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687402022586\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-52%22?seqn=53", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687402415502\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-53%22?seqn=54", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687402820354\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-54%22?seqn=55", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687403225665\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-55%22?seqn=56", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687403643996\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-56%22?seqn=57", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687404051007\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-57%22?seqn=58", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687404454362\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-58%22?seqn=59", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687404866846\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-59%22?seqn=60", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687405291682\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-60%22?seqn=61", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687405682971\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-61%22?seqn=62", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687406080137\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-62%22?seqn=63", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687406483808\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-63%22?seqn=64", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687406876154\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-64%22?seqn=65", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687407280175\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-65%22?seqn=66", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687409615826\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-66%22?seqn=67", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687410019314\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-67%22?seqn=68", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687410423072\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-68%22?seqn=69", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687410815868\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-69%22?seqn=70", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687411219674\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-70%22?seqn=71", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687411620801\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-71%22?seqn=72", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687412024912\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-72%22?seqn=73", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687412425981\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-73%22?seqn=74", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687412835415\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-74%22?seqn=75", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687413240252\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-75%22?seqn=76", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687413660817\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-76%22?seqn=77", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687414063285\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-77%22?seqn=78", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687414470714\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-78%22?seqn=79", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687414885589\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-79%22?seqn=80", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687415298443\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-80%22?seqn=81", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687415726726\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-81%22?seqn=82", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687416138020\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-82%22?seqn=83", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687416553285\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-83%22?seqn=84", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687416965707\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-84%22?seqn=85", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687417394831\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-85%22?seqn=86", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687417824460\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-86%22?seqn=87", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687418254308\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-87%22?seqn=88", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687418684657\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-88%22?seqn=89", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687419104536\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-89%22?seqn=90", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687419512826\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-90%22?seqn=91", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687419938052\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-91%22?seqn=92", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687420360575\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-92%22?seqn=93", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687420780540\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-93%22?seqn=94", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687421208323\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-94%22?seqn=95", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687421634499\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-95%22?seqn=96", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687422084352\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-96%22?seqn=97", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687422500319\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-97%22?seqn=98", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687422932843\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-98%22?seqn=99", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687423363245\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-99%22?seqn=100", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687423788397\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-100%22?seqn=101", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687424225094\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-101%22?seqn=102", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687424656849\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-102%22?seqn=103", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687425102350\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-103%22?seqn=104", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687425531070\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-104%22?seqn=105", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687425958002\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-105%22?seqn=106", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687426417500\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-106%22?seqn=107", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687426848996\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-107%22?seqn=108", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687427277509\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-108%22?seqn=109", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687427716209\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-109%22?seqn=110", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687428246639\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-110%22?seqn=111", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687428723385\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-111%22?seqn=112", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687429170258\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-112%22?seqn=113", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687429606500\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-113%22?seqn=114", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687430037757\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-114%22?seqn=115", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687430478006\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-115%22?seqn=116", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687430916135\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-116%22?seqn=117", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687431358834\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-117%22?seqn=118", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687431799027\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-118%22?seqn=119", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687432256186\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-119%22?seqn=120", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687432700022\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/history/sub-key/{PN_KEY_SUBSCRIBE}/channel/fetch-messages-ch-1?count=100", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Age": [ + "0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Server": [ + "Pubnub Storage" + ], + "Content-Encoding": [ + "gzip" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAAzzNu20DQBAD0V4Uy8Dy9l+LoFCAW3D3Duy5jGDw5vV6fH9+vo49nn9DjMNwRjCSUYxmDGP/hyM7siM7siM7siM7siM7ciAHciAHciAHciAHciAHciInciInciInciInciInciEXciEXciEXciEXciEXciM3ciM3ciM3ciM3ciM38iAP8iAP8iAP8iAP8iAP8iIv8iIv8iIv8iIv8iIvsgxahi0Dl6HL4GX4MgIyCjISstvQbeg2dBu6Dd2GbkO3odvQbWgf76eq59S0z1ae6bhP+GkzO+f9CwAA//8DAGAxjAG/AwAA" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v3/history/sub-key/{PN_KEY_SUBSCRIBE}/channel/fetch-messages-ch-1?include_message_type=true&include_meta=false&include_type=true&max=100", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Age": [ + "0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Server": [ + "Pubnub Storage" + ], + "Content-Encoding": [ + "gzip" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAA5yZzW5cNwyFXyW46xggRYoS8ypBEBjBJC7qOIVnsggMv3vOVdN2IwYlgVl4xnMPJJIf/+bluN7ub9+vx7s3jejtm+Py/PztGe8+3z9eL/+8//j1cr3ef7ng8+PAh58e7p+eLo/nUy/H58vt08Pdr29c7/A3H+/evxy3H3/hAXz/+Pfp4+Hy464RPrr98fVy+/bn5QnfYBuz2Rwy3XqbQ/975OPfIk/fHx9f3/5GkiNJJ2pqzfOSLZZUGp0sLymx5Ji9e89Lnrba2tKZu1kfecnzFIFkb129cPHzkUDShboWLn5ebC/ZpLU5CxefseRoU/T8/69Q/r9xecbd/pTCaiwnCjnJ9Ugg2VXI8/RITI+4uRcuLjE9CkM2ygMpMT06RJBE8raM6eks3Sq2jOnpnQdcnj9lTE+f7hV6JKYHuZK6nRGRjMuYHrMB9+TpkZieQYZXPog0rD0+UCaskII1pudM6jQLp4zpma13pbwtNaZnmsw28h7XmB4nneYFyZgexDmSW54ejelxnzDnaetcqGtEjxIp9TEL7onogeRkRRrOnzKiR4mbjEl59/SIHkiakC3D5GzZI3qUGrXWZ/7iy6O7CglJZRCZ93iP6IEkipn0fNFdj+xPif7lbN3SHu8RPUpiiKFCEPWIHj0jnYnyRXe1pPuLqwJyK7gnpgd5yObKAcm4jOnpzVHN8qe0mJ4OPS+k4FWn97Y0AuGrzucuvswfSOqUWag9FtODqc+4QI9FtQejWcPFR56eBdz+4o4zYkJNA2khPSCHHSNAXjKsPUzaBLfPS4b0MGoPMnC+nK3ObGtL5sZuhRF/hPQwWzuDPX3xBdz+lKg96py35TJ/IKmt+yycMqSHMZR2VLT8xUN6WBpKWqEnWsDtLy6GXMT5QjFiepRM2ixcPKZHddAoADlienSi/y+0/yOsPYzaM3X18rmsPmN6+miGVzqIVijvPY4pd6J9y0uewAWSvZc8PmN6DNtG+Dx/ypieIViWrHVK0j1h58ZYjaqu1iEpGdODoQezVD6rr53a3j0oElpZNq5RaS/pKGhdCnEZ0+MdKbMQ6h7T445QL+TLNRxvL45xwjBE5pObh/Q0wriHtUE61Ne8vT8lo+ZKO+nKxeXaqQWSJqp+ui8pGdLTcEiVintCejCbEQkXThnWntYcua2Q1T2sPU0EFbKwV1/m37sHO4Mpns+X6HXh0r2mnuYsrFl5tXuBpmGc0ryDeC0G9poYdZus9UcuNJnC+oNFnjCttjarGRYgdJh94hevNEJMMUOmGKeWD7PnjCGCg7C6zid3GCyMpdEGzlnxe4zRGOdwUdE8n9nHEgq62dptJ+3JMUdzgPhCQ8wc7t+w5RgYBfJtAka88O5uZKVYWr+bbO0pSMdwfCEvrW4/0FRUzMJPvPjRNbo7tteMxjhf1zHfhprQQ1LOrxF4zWP7u/Nwp1axZ8jR2mhyYZfLq9Duz9kGIdUFue7D6+tPAAAA//8DALOsLhHbIAAA" + } + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/native_sync/fetch_messages/max_100_single.yaml b/tests/integrational/fixtures/native_sync/fetch_messages/max_100_single.yaml deleted file mode 100644 index 32d53874..00000000 --- a/tests/integrational/fixtures/native_sync/fetch_messages/max_100_single.yaml +++ /dev/null @@ -1,4182 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-0%22?seqn=1 - response: - body: - string: '[1,"Sent","16075182561431336"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-1%22?seqn=2 - response: - body: - string: '[1,"Sent","16075182562951408"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-2%22?seqn=3 - response: - body: - string: '[1,"Sent","16075182564528099"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-3%22?seqn=4 - response: - body: - string: '[1,"Sent","16075182566000454"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-4%22?seqn=5 - response: - body: - string: '[1,"Sent","16075182567405487"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-5%22?seqn=6 - response: - body: - string: '[1,"Sent","16075182568855264"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-6%22?seqn=7 - response: - body: - string: '[1,"Sent","16075182570463415"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-7%22?seqn=8 - response: - body: - string: '[1,"Sent","16075182571890170"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-8%22?seqn=9 - response: - body: - string: '[1,"Sent","16075182573374501"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-9%22?seqn=10 - response: - body: - string: '[1,"Sent","16075182574961814"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-10%22?seqn=11 - response: - body: - string: '[1,"Sent","16075182576727390"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-11%22?seqn=12 - response: - body: - string: '[1,"Sent","16075182578208045"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-12%22?seqn=13 - response: - body: - string: '[1,"Sent","16075182579770179"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-13%22?seqn=14 - response: - body: - string: '[1,"Sent","16075182581224518"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-14%22?seqn=15 - response: - body: - string: '[1,"Sent","16075182582606797"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-15%22?seqn=16 - response: - body: - string: '[1,"Sent","16075182584109121"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-16%22?seqn=17 - response: - body: - string: '[1,"Sent","16075182585596056"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-17%22?seqn=18 - response: - body: - string: '[1,"Sent","16075182587226640"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-18%22?seqn=19 - response: - body: - string: '[1,"Sent","16075182588796317"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-19%22?seqn=20 - response: - body: - string: '[1,"Sent","16075182590271497"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-20%22?seqn=21 - response: - body: - string: '[1,"Sent","16075182591814397"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-21%22?seqn=22 - response: - body: - string: '[1,"Sent","16075182593306368"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-22%22?seqn=23 - response: - body: - string: '[1,"Sent","16075182594960741"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-23%22?seqn=24 - response: - body: - string: '[1,"Sent","16075182596378606"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-24%22?seqn=25 - response: - body: - string: '[1,"Sent","16075182597920454"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-25%22?seqn=26 - response: - body: - string: '[1,"Sent","16075182599420161"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:50:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-26%22?seqn=27 - response: - body: - string: '[1,"Sent","16075182600874449"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-27%22?seqn=28 - response: - body: - string: '[1,"Sent","16075182602612169"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-28%22?seqn=29 - response: - body: - string: '[1,"Sent","16075182604372686"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-29%22?seqn=30 - response: - body: - string: '[1,"Sent","16075182605946554"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-30%22?seqn=31 - response: - body: - string: '[1,"Sent","16075182607563073"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-31%22?seqn=32 - response: - body: - string: '[1,"Sent","16075182609014920"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-32%22?seqn=33 - response: - body: - string: '[1,"Sent","16075182610458262"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-33%22?seqn=34 - response: - body: - string: '[1,"Sent","16075182612074356"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-34%22?seqn=35 - response: - body: - string: '[1,"Sent","16075182613662845"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-35%22?seqn=36 - response: - body: - string: '[1,"Sent","16075182615124427"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-36%22?seqn=37 - response: - body: - string: '[1,"Sent","16075182616579891"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-37%22?seqn=38 - response: - body: - string: '[1,"Sent","16075182618094946"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-38%22?seqn=39 - response: - body: - string: '[1,"Sent","16075182619630518"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-39%22?seqn=40 - response: - body: - string: '[1,"Sent","16075182621141034"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-40%22?seqn=41 - response: - body: - string: '[1,"Sent","16075182622739246"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-41%22?seqn=42 - response: - body: - string: '[1,"Sent","16075182624388697"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-42%22?seqn=43 - response: - body: - string: '[1,"Sent","16075182625843136"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-43%22?seqn=44 - response: - body: - string: '[1,"Sent","16075182627385553"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-44%22?seqn=45 - response: - body: - string: '[1,"Sent","16075182628850884"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-45%22?seqn=46 - response: - body: - string: '[1,"Sent","16075182630443886"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-46%22?seqn=47 - response: - body: - string: '[1,"Sent","16075182631865357"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-47%22?seqn=48 - response: - body: - string: '[1,"Sent","16075182633517903"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-48%22?seqn=49 - response: - body: - string: '[1,"Sent","16075182635038176"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-49%22?seqn=50 - response: - body: - string: '[1,"Sent","16075182637570562"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-50%22?seqn=51 - response: - body: - string: '[1,"Sent","16075182639066320"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-51%22?seqn=52 - response: - body: - string: '[1,"Sent","16075182640526675"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:04 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-52%22?seqn=53 - response: - body: - string: '[1,"Sent","16075182642078447"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:04 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-53%22?seqn=54 - response: - body: - string: '[1,"Sent","16075182643845669"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:04 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-54%22?seqn=55 - response: - body: - string: '[1,"Sent","16075182645476445"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:04 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-55%22?seqn=56 - response: - body: - string: '[1,"Sent","16075182647035345"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:04 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-56%22?seqn=57 - response: - body: - string: '[1,"Sent","16075182648716436"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:04 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-57%22?seqn=58 - response: - body: - string: '[1,"Sent","16075182650194818"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:05 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-58%22?seqn=59 - response: - body: - string: '[1,"Sent","16075182651860917"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:05 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-59%22?seqn=60 - response: - body: - string: '[1,"Sent","16075182653507822"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:05 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-60%22?seqn=61 - response: - body: - string: '[1,"Sent","16075182654962783"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:05 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-61%22?seqn=62 - response: - body: - string: '[1,"Sent","16075182656384520"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:05 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-62%22?seqn=63 - response: - body: - string: '[1,"Sent","16075182657890266"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:05 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-63%22?seqn=64 - response: - body: - string: '[1,"Sent","16075182659309571"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:05 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-64%22?seqn=65 - response: - body: - string: '[1,"Sent","16075182660822235"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:06 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-65%22?seqn=66 - response: - body: - string: '[1,"Sent","16075182662392704"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:06 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-66%22?seqn=67 - response: - body: - string: '[1,"Sent","16075182664183732"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:06 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-67%22?seqn=68 - response: - body: - string: '[1,"Sent","16075182665614289"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:06 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-68%22?seqn=69 - response: - body: - string: '[1,"Sent","16075182667210388"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:06 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-69%22?seqn=70 - response: - body: - string: '[1,"Sent","16075182668919523"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:06 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-70%22?seqn=71 - response: - body: - string: '[1,"Sent","16075182670486262"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:07 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-71%22?seqn=72 - response: - body: - string: '[1,"Sent","16075182672009435"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:07 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-72%22?seqn=73 - response: - body: - string: '[1,"Sent","16075182673700705"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:07 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-73%22?seqn=74 - response: - body: - string: '[1,"Sent","16075182675262974"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:07 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-74%22?seqn=75 - response: - body: - string: '[1,"Sent","16075182676710288"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:07 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-75%22?seqn=76 - response: - body: - string: '[1,"Sent","16075182678217071"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:07 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-76%22?seqn=77 - response: - body: - string: '[1,"Sent","16075182679779193"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:07 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-77%22?seqn=78 - response: - body: - string: '[1,"Sent","16075182681289663"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:08 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-78%22?seqn=79 - response: - body: - string: '[1,"Sent","16075182682956141"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:08 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-79%22?seqn=80 - response: - body: - string: '[1,"Sent","16075182684527703"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:08 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-80%22?seqn=81 - response: - body: - string: '[1,"Sent","16075182686003102"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:08 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-81%22?seqn=82 - response: - body: - string: '[1,"Sent","16075182687501446"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:08 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-82%22?seqn=83 - response: - body: - string: '[1,"Sent","16075182688950969"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:08 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-83%22?seqn=84 - response: - body: - string: '[1,"Sent","16075182690496222"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:09 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-84%22?seqn=85 - response: - body: - string: '[1,"Sent","16075182692028614"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:09 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-85%22?seqn=86 - response: - body: - string: '[1,"Sent","16075182693954342"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:09 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-86%22?seqn=87 - response: - body: - string: '[1,"Sent","16075182695570185"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:09 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-87%22?seqn=88 - response: - body: - string: '[1,"Sent","16075182697326217"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:09 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-88%22?seqn=89 - response: - body: - string: '[1,"Sent","16075182699032898"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:09 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-89%22?seqn=90 - response: - body: - string: '[1,"Sent","16075182700695191"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:10 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-90%22?seqn=91 - response: - body: - string: '[1,"Sent","16075182702197632"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:10 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-91%22?seqn=92 - response: - body: - string: '[1,"Sent","16075182703760232"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:10 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-92%22?seqn=93 - response: - body: - string: '[1,"Sent","16075182705439911"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:10 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-93%22?seqn=94 - response: - body: - string: '[1,"Sent","16075182706953031"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:10 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-94%22?seqn=95 - response: - body: - string: '[1,"Sent","16075182708638353"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:10 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-95%22?seqn=96 - response: - body: - string: '[1,"Sent","16075182710170115"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:11 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-96%22?seqn=97 - response: - body: - string: '[1,"Sent","16075182711694391"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:11 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-97%22?seqn=98 - response: - body: - string: '[1,"Sent","16075182713176619"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:11 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-98%22?seqn=99 - response: - body: - string: '[1,"Sent","16075182714801413"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:11 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-99%22?seqn=100 - response: - body: - string: '[1,"Sent","16075182716619068"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:11 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-100%22?seqn=101 - response: - body: - string: '[1,"Sent","16075182718215817"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:11 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-101%22?seqn=102 - response: - body: - string: '[1,"Sent","16075182719718211"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:11 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-102%22?seqn=103 - response: - body: - string: '[1,"Sent","16075182721256973"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:12 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-103%22?seqn=104 - response: - body: - string: '[1,"Sent","16075182722949286"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:12 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-104%22?seqn=105 - response: - body: - string: '[1,"Sent","16075182724528316"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:12 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-105%22?seqn=106 - response: - body: - string: '[1,"Sent","16075182726021913"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:12 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-106%22?seqn=107 - response: - body: - string: '[1,"Sent","16075182727653721"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:12 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-107%22?seqn=108 - response: - body: - string: '[1,"Sent","16075182729218467"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:12 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-108%22?seqn=109 - response: - body: - string: '[1,"Sent","16075182730810730"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:13 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-109%22?seqn=110 - response: - body: - string: '[1,"Sent","16075182732632374"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:13 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-110%22?seqn=111 - response: - body: - string: '[1,"Sent","16075182734188647"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:13 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-111%22?seqn=112 - response: - body: - string: '[1,"Sent","16075182735701925"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:13 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-112%22?seqn=113 - response: - body: - string: '[1,"Sent","16075182737282947"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:13 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-113%22?seqn=114 - response: - body: - string: '[1,"Sent","16075182738835529"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:13 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-114%22?seqn=115 - response: - body: - string: '[1,"Sent","16075182740476802"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:14 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-115%22?seqn=116 - response: - body: - string: '[1,"Sent","16075182741990071"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:14 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-116%22?seqn=117 - response: - body: - string: '[1,"Sent","16075182743527261"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:14 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-117%22?seqn=118 - response: - body: - string: '[1,"Sent","16075182745134152"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:14 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-118%22?seqn=119 - response: - body: - string: '[1,"Sent","16075182746905601"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:14 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-119%22?seqn=120 - response: - body: - string: '[1,"Sent","16075182748673817"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:14 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/v2/history/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/fetch-messages-ch-1?count=100 - response: - body: - string: !!binary | - H4sIAAAAAAAAA0TTO25CURAE0a0gYixNv/mvBREisQXv3hZB3azUyYn6+bx/3r8/2vvj9q3LKFEX - 5VRQSRXV1FAYjuEYjuEYjuEYjuEYjuEYgREYgREYgREYgREYgREYiZEYiZEYiZEYiZEYiZEYhVEY - hVEYhVEYhVEYhVEYjdEYjdEYjdEYjdEYjdEYgzEYgzEYgzEYgzEYgzEYi7EYi7EYi7EYi7EYi7EY - MhAZigxGhiMDkiHJoGRYMjDZ0XQ0HU1H0yF0CB1Ch9Ah/g//eqisU3Pl2tWKbZaOqfZRv/4AAAD/ - /wMAujO/7iEEAAA= - headers: - Access-Control-Allow-Methods: - - GET, POST, DELETE, OPTIONS - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:16 GMT - Server: - - Pubnub - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/v3/history/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/fetch-messages-ch-1?include_meta=false&max=100 - response: - body: - string: !!binary | - H4sIAAAAAAAAA3yY3WrcRwzFXyXsdQz6liavUkoxYVOXJg7E7kUxfveef2mhFEl33sVnR6P56Ugz - b7eX18fXP15unz4I0ccPt/uPH99/4NOXx68v938///Lt/vLy+Osd399u+PLz0+Pz8/3rpXq7fbm/ - fn56+Oc/Xh7wN98+/fR2+4/m6f7nA59L+frbt/vr99/vz9dPcVA6l/ghSbaTt/eP+MH/CYUWIReb - TkJehKoUGtWvKIvQDqI27oW6CEOzgqIX2iLMI2RuvdAX4TEhjiHUGIVBVGlmp18xF6EEC8cgrEVo - mhI1JGcmJ8iPhQ/J0Zmci7xQSm33qDM5QYeAKqDsWNWZnGAcYklIL5zJQUoBnHqfHJ3JCdYIKfN+ - xZmcYGcxk74edSGHw/PU6ZHThRwuOoaj7ENdyOGDY4SJ9MKFHGE2JqSvO0dbyBFJPTKECmOYXC7E - tCoGs7KFHPEyxWH2oS7kINJy9x5yW8iRKqeqITkLOUr29y77UBdylCtcvUfOFnJUnfPQsMeFHHXS - 4hyyupCj6Uk+FLIv5OihCB2swxdyjFwisi9kX8hBA8gypK+DHFyMrOIQzWNwctjtLHTLsMFzfCHH - ktR1Ei7kWCWHDdUBoMZQnfhYDdbhCzmwG7QBHrK6kAPAcR7St4BYyHFMHZLVQ44OP+8xroMckAPC - szALU1n01RELOX6UjmffAmIhJwiZEe0hj4WcEPhxUm9W2MG4xzAuTfTsrjpiISc82KT6OQdD5bxi - CnpO9d0K1TYL0VSPSw9ALuQgLxXT1IFTGldM3AcOxo42ObmQk5pEMMheuJCTMDk52Z8jvp5DjWRC - y+pXXMhBLXLSwCo6w7ziycSBDMexkFMMbNAE+lAXckrOBV1fVrmQc5V/wlvbFWshBx5Hirz2woWc - SjirDQNSLeRUHaczNB2Y33gchy5/HHwVU8wsFHCDtPZ7XMg5etwUQ1tnHbjHzCs6hgeuvjpqIefA - qAK49isu5BwMR4Curw542BQqqjiO8zDMn5mcJOGTGHTaUPF784qaQTIJZ3LgNngFONxXB8p0XhFb - VGDehzqTk1TorBhYeuFMDpwKlsPcA3BmcpJxscYuh1BncpIVU27g/aVjFVyMyWErFDIPe1zI4Ws5 - Gl5XmBZ08BrEjqm8jRWpW4I9eYn79Fw2Nm5TWBzXsn6baNeLUnBphYEM0S74CFy5lCflwo+gQlCU - U7QLQJK4YWEAGaJdCJIjXIaJqCOIaUFIqRivLDQoF4bgdio6TAPMC0OKsa5iuPQwCBlJwP0TdwLp - a5N5YQh5RYce11xIMMKFqYY2e/nEGK0xrH2aXuAWi1IxE+Ctrj8VVN+8pjPSiytnSwLuUrMyDi7N - qOBeuZCAARbvGJcn/Pz+/hcAAAD//wMAWXif3LEWAAA= - headers: - Access-Control-Allow-Methods: - - GET, POST, DELETE, OPTIONS - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 12:51:16 GMT - Server: - - Pubnub - status: - code: 200 - message: OK -version: 1 diff --git a/tests/integrational/fixtures/native_sync/fetch_messages/max_25_multiple.json b/tests/integrational/fixtures/native_sync/fetch_messages/max_25_multiple.json new file mode 100644 index 00000000..c5bd98c8 --- /dev/null +++ b/tests/integrational/fixtures/native_sync/fetch_messages/max_25_multiple.json @@ -0,0 +1,12911 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-0%22?seqn=1", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687445626416\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-0%22?seqn=2", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687446026481\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-1%22?seqn=3", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687446369669\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-1%22?seqn=4", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687446764754\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-2%22?seqn=5", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687447136154\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-2%22?seqn=6", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687447491363\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-3%22?seqn=7", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687447864884\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-3%22?seqn=8", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687450058640\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-4%22?seqn=9", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687450402792\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-4%22?seqn=10", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687450753640\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-5%22?seqn=11", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687451106729\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-5%22?seqn=12", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687451452843\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-6%22?seqn=13", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687451808932\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-6%22?seqn=14", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687452189379\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-7%22?seqn=15", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687452564843\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-7%22?seqn=16", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687452934757\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-8%22?seqn=17", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687453293235\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-8%22?seqn=18", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687453656142\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-9%22?seqn=19", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687454020051\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-9%22?seqn=20", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687454380146\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-10%22?seqn=21", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687454736518\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-10%22?seqn=22", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687455091301\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-11%22?seqn=23", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687455455576\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-11%22?seqn=24", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687455811202\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-12%22?seqn=25", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687456193517\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-12%22?seqn=26", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687456570145\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-13%22?seqn=27", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687456963841\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-13%22?seqn=28", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687457350298\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-14%22?seqn=29", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687457714311\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-14%22?seqn=30", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687458107656\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-15%22?seqn=31", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687458480249\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-15%22?seqn=32", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687458844253\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-16%22?seqn=33", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687459216494\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-16%22?seqn=34", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687459619283\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-17%22?seqn=35", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687459990903\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-17%22?seqn=36", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687460350310\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-18%22?seqn=37", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687460726101\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-18%22?seqn=38", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687461109017\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-19%22?seqn=39", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687461482621\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-19%22?seqn=40", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687461867223\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-20%22?seqn=41", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687462242173\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-20%22?seqn=42", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687462616706\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-21%22?seqn=43", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687463006271\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-21%22?seqn=44", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687463377335\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-22%22?seqn=45", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687463744012\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-22%22?seqn=46", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687464126620\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-23%22?seqn=47", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687464518089\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-23%22?seqn=48", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687464889777\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-24%22?seqn=49", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687465266894\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-24%22?seqn=50", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687465638429\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-25%22?seqn=51", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687466023559\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-25%22?seqn=52", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687466427417\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-26%22?seqn=53", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687466804464\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-26%22?seqn=54", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687467186792\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-27%22?seqn=55", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687467583072\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-27%22?seqn=56", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687467964138\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-28%22?seqn=57", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687468345853\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-28%22?seqn=58", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687468836811\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-29%22?seqn=59", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687469251095\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-29%22?seqn=60", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687469622507\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-30%22?seqn=61", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687469988644\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-30%22?seqn=62", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687470380476\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-31%22?seqn=63", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687470754513\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-31%22?seqn=64", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687471139400\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-32%22?seqn=65", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687471524770\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-32%22?seqn=66", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687471905479\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-33%22?seqn=67", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687472285035\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-33%22?seqn=68", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687472690023\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-34%22?seqn=69", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687473070598\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-34%22?seqn=70", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687473450234\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-35%22?seqn=71", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687475821294\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-35%22?seqn=72", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687476204038\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-36%22?seqn=73", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687476614744\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-36%22?seqn=74", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687476998945\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-37%22?seqn=75", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687477373780\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-37%22?seqn=76", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687477764187\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-38%22?seqn=77", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687478141802\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-38%22?seqn=78", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687478530431\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-39%22?seqn=79", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687478926727\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-39%22?seqn=80", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687479368421\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-40%22?seqn=81", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687479760324\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-40%22?seqn=82", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687480163745\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-41%22?seqn=83", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687480564474\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-41%22?seqn=84", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687480960702\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-42%22?seqn=85", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687481377461\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-42%22?seqn=86", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687481776507\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-43%22?seqn=87", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687482197920\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-43%22?seqn=88", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687482597608\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-44%22?seqn=89", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687483001892\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-44%22?seqn=90", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687483397442\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-45%22?seqn=91", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687483803909\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-45%22?seqn=92", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687484204236\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-46%22?seqn=93", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687484602188\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-46%22?seqn=94", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687485006565\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-47%22?seqn=95", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687485405965\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-47%22?seqn=96", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687485814160\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-48%22?seqn=97", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687486238594\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-48%22?seqn=98", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687486634382\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-49%22?seqn=99", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687487057808\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-49%22?seqn=100", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687487471279\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-50%22?seqn=101", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687487885573\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-50%22?seqn=102", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687488296038\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-51%22?seqn=103", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687488703141\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-51%22?seqn=104", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687489113944\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-52%22?seqn=105", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687489523847\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-52%22?seqn=106", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687489955306\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-53%22?seqn=107", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687490401379\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-53%22?seqn=108", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687490825663\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-54%22?seqn=109", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687491268567\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-54%22?seqn=110", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687491725287\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-55%22?seqn=111", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687492181769\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-55%22?seqn=112", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687492610871\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-56%22?seqn=113", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687493033049\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-56%22?seqn=114", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687493466260\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-57%22?seqn=115", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687493902289\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-57%22?seqn=116", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687494453525\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-58%22?seqn=117", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687494905261\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-58%22?seqn=118", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687495351863\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-59%22?seqn=119", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687495807000\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-59%22?seqn=120", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687496262255\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-60%22?seqn=121", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687496707390\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-60%22?seqn=122", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687497147848\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-61%22?seqn=123", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687497609600\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-61%22?seqn=124", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687498052406\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-62%22?seqn=125", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687498480988\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-62%22?seqn=126", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687498900637\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-63%22?seqn=127", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687499319254\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-63%22?seqn=128", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687499741702\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-64%22?seqn=129", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687500176198\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-64%22?seqn=130", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687500673169\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-65%22?seqn=131", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687501103444\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-65%22?seqn=132", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687501540125\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-66%22?seqn=133", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687501964990\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-66%22?seqn=134", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687502404277\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-67%22?seqn=135", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687502837525\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-67%22?seqn=136", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687503265283\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-68%22?seqn=137", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687503696513\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-68%22?seqn=138", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687504134769\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-69%22?seqn=139", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687504576348\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-69%22?seqn=140", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687505009311\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-70%22?seqn=141", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687505449875\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-70%22?seqn=142", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687505890963\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-71%22?seqn=143", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687506324521\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-71%22?seqn=144", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687506764510\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-72%22?seqn=145", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687507211423\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-72%22?seqn=146", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687507656812\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-73%22?seqn=147", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687508097924\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-73%22?seqn=148", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687508539939\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-74%22?seqn=149", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687508986986\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-74%22?seqn=150", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687509432691\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-75%22?seqn=151", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687509876569\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-75%22?seqn=152", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687510319000\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-76%22?seqn=153", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687510775785\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-76%22?seqn=154", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687511225235\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-77%22?seqn=155", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687511675100\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-77%22?seqn=156", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687512138237\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-78%22?seqn=157", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687512599601\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-78%22?seqn=158", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687513067281\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-79%22?seqn=159", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687513533665\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-79%22?seqn=160", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687513983832\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-80%22?seqn=161", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687514436679\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-80%22?seqn=162", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687514916979\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-81%22?seqn=163", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687515375093\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-81%22?seqn=164", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687515829397\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-82%22?seqn=165", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687516302990\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-82%22?seqn=166", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687516748777\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-83%22?seqn=167", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687517216210\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-83%22?seqn=168", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687517681290\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-84%22?seqn=169", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687518131166\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-84%22?seqn=170", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687518583791\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-85%22?seqn=171", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687519058419\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-85%22?seqn=172", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687519507796\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-86%22?seqn=173", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687519982887\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-86%22?seqn=174", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687520454108\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-87%22?seqn=175", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687520917521\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-87%22?seqn=176", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687521376259\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-88%22?seqn=177", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687521833690\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-88%22?seqn=178", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687522297993\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-89%22?seqn=179", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687522788343\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-89%22?seqn=180", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687523254046\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-90%22?seqn=181", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687523723986\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-90%22?seqn=182", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687524192029\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-91%22?seqn=183", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687524655496\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-91%22?seqn=184", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687525119295\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-92%22?seqn=185", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687525600986\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-92%22?seqn=186", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687526067930\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-93%22?seqn=187", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687526549209\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-93%22?seqn=188", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687526996406\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-94%22?seqn=189", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687527487949\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-94%22?seqn=190", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687527993011\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-95%22?seqn=191", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687528597206\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-95%22?seqn=192", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687529072900\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-96%22?seqn=193", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687529562144\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-96%22?seqn=194", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687530038453\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-97%22?seqn=195", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687530516349\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-97%22?seqn=196", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687531002054\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-98%22?seqn=197", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687531506537\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-98%22?seqn=198", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687531986534\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-99%22?seqn=199", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687532461330\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-99%22?seqn=200", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687532959090\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-100%22?seqn=201", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687533437096\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-100%22?seqn=202", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687533916298\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-101%22?seqn=203", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687534388605\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-101%22?seqn=204", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687534898200\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-102%22?seqn=205", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687535386290\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-102%22?seqn=206", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687535999113\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-103%22?seqn=207", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687536485583\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-103%22?seqn=208", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687536984818\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-104%22?seqn=209", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687537481501\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-104%22?seqn=210", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687538008477\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-105%22?seqn=211", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687538493785\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-105%22?seqn=212", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687538982256\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-106%22?seqn=213", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687539457640\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-106%22?seqn=214", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687539941579\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-107%22?seqn=215", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687540434949\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-107%22?seqn=216", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687540935791\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-108%22?seqn=217", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687541432553\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-108%22?seqn=218", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687541948774\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-109%22?seqn=219", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687542456285\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-109%22?seqn=220", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687542951321\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-110%22?seqn=221", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687543444398\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-110%22?seqn=222", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687543944264\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-111%22?seqn=223", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687544441246\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-111%22?seqn=224", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687544943514\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-112%22?seqn=225", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687545456245\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-112%22?seqn=226", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687545953872\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-113%22?seqn=227", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687546458879\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-113%22?seqn=228", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687546959866\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-114%22?seqn=229", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687547477596\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-114%22?seqn=230", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687547978695\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-115%22?seqn=231", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687548519010\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-115%22?seqn=232", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687549026905\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-116%22?seqn=233", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687549541218\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-116%22?seqn=234", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687550057776\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-117%22?seqn=235", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687550564641\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-117%22?seqn=236", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687551079518\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-118%22?seqn=237", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687551627274\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-118%22?seqn=238", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687552142732\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-1/0/%22hey-119%22?seqn=239", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687552657004\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-ch-2/0/%22hey-119%22?seqn=240", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687553166462\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/history/sub-key/{PN_KEY_SUBSCRIBE}/channel/fetch-messages-ch-1?count=100", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Age": [ + "0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Server": [ + "Pubnub Storage" + ], + "Content-Encoding": [ + "gzip" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAAzzOu21DUQwE0V5eLAPcx38tgkIDbsHdW4A8N1swOMPn8/r5/v3SXI/P2P9xG0OMm+GMYCSjGM1AvpEd2ZEd2ZEd2ZEd2ZEd2ZEDOZADOZADOZADOZADOZATOZETOZETOZETOZETOZELuZALuZALuZALuZALuZAbuZEbuZEbuZEbuZEbuZEHeZAHeZAHeZAHeZAHeZAXeZEXeZEXeZEXeZEXeZFl0DJsGbgMXQYvw5cRkFGQkZCdhk5Dp6HT0GnoNHQaOg319Xqoeu6ajrK+6/3zuWRaVlTo9QcAAP//AwABdp41vQMAAA==" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/history/sub-key/{PN_KEY_SUBSCRIBE}/channel/fetch-messages-ch-2?count=100", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Age": [ + "0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Server": [ + "Pubnub Storage" + ], + "Content-Encoding": [ + "gzip" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAAzzNy2lDURAE0VzeWobpN/9YhJYCp+DsLbDr7ppenHo+r+/3z9dt1+NviHEznBGMZBSjGcPY/+HIjuzIjuzIjuzIjuzIjhzIgRzIgRzIgRzIgRzIgZzIiZzIiZzIiZzIiZzIiVzIhVzIhVzIhVzIhVzIhdzIjdzIjdzIjdzIjdzIjTzIgzzIgzzIgzzIgzzIg7zIi7zIi7zIi7zIi7zIiyyDlmHLwGXoMngZvoyAjIKMhOw0dBo6DZ2GTkOnodPQaeg0dBra6/VQ9dw1HXXXZ1udJ9NV9flfvwAAAP//AwBEUBkovwMAAA==" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v3/history/sub-key/{PN_KEY_SUBSCRIBE}/channel/fetch-messages-ch-1,fetch-messages-ch-2?include_message_type=true&include_meta=false&include_type=true&max=25", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Age": [ + "0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Server": [ + "Pubnub Storage" + ], + "Content-Encoding": [ + "gzip" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAA5xXQW4bMQz8SrDnGCBFUhLzlSAIjGBTF3WcwuscAsN/L7VN24u4qHgw4JVXA5LDIcfXabnsLx/L9HCXAO7vpvl8fj/b0+v+uMx/np/f5mXZf5vtfJrs8OWwP53mY7t1nV7ny8th9/XGsrPvaXp4vE6Xz592wd6f/t6eDvPnTsWOLt/f5sv7j/lkb2AuNeVaJCkU+8C/K8+/QU4fx+PtfgMye5AEQJWFxiGLC4kACYTHIasPqTULBSDVhUwqCjpeS8vOxSTFnLSl8UXpf/KDgC4mV63WegHM5GKKqiKOk47Q7nR7k7JWrhjJvdHax6wAlUvrtNF6uhqiVs4kTRCjmL6IVBmltF4bxXRVxKBkkK0vRjEbB916MirXUsZlhODqiE1HSCkQJ7ae7sdJypxyIE5scfQxWZkEI5iujlhUqJb2+yBHq/b6cWabSzUH+nPNrY9ZtFTDDcTp6ogVUlaIYLo6EgAppURyd3UkCMU6NDCX1jvdekpCToUivLs6EsKcOTuYT/cdG4FRG1FFS4LxMqvLnA2BbEUZV5e6xBEIZuJWsDFxrfu3yxuhgNmI8X2iLm2UOCNRG2VjUW7aCKYCa7FHMd3xR0y15ohcwR1/ZMPP7E4k9w0bwVWkRqxJa74+7cWMiawWa7Se7vgz06xUamD8rbrrx6ksJXOknq6KGNg0FFARQhuZ3TgZmZIE/jNs2gi2CRKp55aNYGZax8Eg71s2ghlN8+N6R1dHLC13DvTSlo1gqTViSbdshHlxicwldHVkakeFlcNRjtxlxCrGUWjluzoSENvO3ObraJyujmy/pZIidhzdfSQpSwFwFvHT7fYLAAD//wMAekSPrtEQAAA=" + } + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/native_sync/fetch_messages/max_25_multiple.yaml b/tests/integrational/fixtures/native_sync/fetch_messages/max_25_multiple.yaml deleted file mode 100644 index dbb6a281..00000000 --- a/tests/integrational/fixtures/native_sync/fetch_messages/max_25_multiple.yaml +++ /dev/null @@ -1,8297 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-0%22?seqn=1 - response: - body: - string: '[1,"Sent","16075188207869524"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:20 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-0%22?seqn=2 - response: - body: - string: '[1,"Sent","16075188209340558"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:20 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-1%22?seqn=3 - response: - body: - string: '[1,"Sent","16075188210957818"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:21 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-1%22?seqn=4 - response: - body: - string: '[1,"Sent","16075188212448730"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:21 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-2%22?seqn=5 - response: - body: - string: '[1,"Sent","16075188213881299"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:21 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-2%22?seqn=6 - response: - body: - string: '[1,"Sent","16075188215338720"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:21 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-3%22?seqn=7 - response: - body: - string: '[1,"Sent","16075188216868999"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:21 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-3%22?seqn=8 - response: - body: - string: '[1,"Sent","16075188218355151"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:21 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-4%22?seqn=9 - response: - body: - string: '[1,"Sent","16075188219967649"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:21 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-4%22?seqn=10 - response: - body: - string: '[1,"Sent","16075188221485685"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:22 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-5%22?seqn=11 - response: - body: - string: '[1,"Sent","16075188222903762"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:22 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-5%22?seqn=12 - response: - body: - string: '[1,"Sent","16075188224423416"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:22 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-6%22?seqn=13 - response: - body: - string: '[1,"Sent","16075188226013092"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:22 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-6%22?seqn=14 - response: - body: - string: '[1,"Sent","16075188227457773"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:22 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-7%22?seqn=15 - response: - body: - string: '[1,"Sent","16075188228980403"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:22 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-7%22?seqn=16 - response: - body: - string: '[1,"Sent","16075188230691169"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:23 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-8%22?seqn=17 - response: - body: - string: '[1,"Sent","16075188232350214"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:23 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-8%22?seqn=18 - response: - body: - string: '[1,"Sent","16075188233880571"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:23 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-9%22?seqn=19 - response: - body: - string: '[1,"Sent","16075188235560624"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:23 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-9%22?seqn=20 - response: - body: - string: '[1,"Sent","16075188237039632"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:23 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-10%22?seqn=21 - response: - body: - string: '[1,"Sent","16075188238677725"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:23 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-10%22?seqn=22 - response: - body: - string: '[1,"Sent","16075188240325739"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:24 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-11%22?seqn=23 - response: - body: - string: '[1,"Sent","16075188241781616"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:24 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-11%22?seqn=24 - response: - body: - string: '[1,"Sent","16075188243226993"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:24 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-12%22?seqn=25 - response: - body: - string: '[1,"Sent","16075188244684999"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:24 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-12%22?seqn=26 - response: - body: - string: '[1,"Sent","16075188246301807"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:24 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-13%22?seqn=27 - response: - body: - string: '[1,"Sent","16075188257749979"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:25 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-13%22?seqn=28 - response: - body: - string: '[1,"Sent","16075188259130917"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:25 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-14%22?seqn=29 - response: - body: - string: '[1,"Sent","16075188260590482"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:26 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-14%22?seqn=30 - response: - body: - string: '[1,"Sent","16075188262024581"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:26 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-15%22?seqn=31 - response: - body: - string: '[1,"Sent","16075188263411120"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:26 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-15%22?seqn=32 - response: - body: - string: '[1,"Sent","16075188264872796"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:26 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-16%22?seqn=33 - response: - body: - string: '[1,"Sent","16075188266371506"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:26 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-16%22?seqn=34 - response: - body: - string: '[1,"Sent","16075188267923311"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:26 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-17%22?seqn=35 - response: - body: - string: '[1,"Sent","16075188269459746"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:26 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-17%22?seqn=36 - response: - body: - string: '[1,"Sent","16075188271069269"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:27 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-18%22?seqn=37 - response: - body: - string: '[1,"Sent","16075188272479521"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:27 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-18%22?seqn=38 - response: - body: - string: '[1,"Sent","16075188273885725"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:27 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-19%22?seqn=39 - response: - body: - string: '[1,"Sent","16075188275480974"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:27 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-19%22?seqn=40 - response: - body: - string: '[1,"Sent","16075188276872412"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:27 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-20%22?seqn=41 - response: - body: - string: '[1,"Sent","16075188278263950"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:27 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-20%22?seqn=42 - response: - body: - string: '[1,"Sent","16075188279665113"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:27 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-21%22?seqn=43 - response: - body: - string: '[1,"Sent","16075188281131186"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:28 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-21%22?seqn=44 - response: - body: - string: '[1,"Sent","16075188282683648"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:28 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-22%22?seqn=45 - response: - body: - string: '[1,"Sent","16075188284255341"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:28 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-22%22?seqn=46 - response: - body: - string: '[1,"Sent","16075188285941956"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:28 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-23%22?seqn=47 - response: - body: - string: '[1,"Sent","16075188287310750"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:28 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-23%22?seqn=48 - response: - body: - string: '[1,"Sent","16075188288738700"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:28 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-24%22?seqn=49 - response: - body: - string: '[1,"Sent","16075188297512595"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:29 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-24%22?seqn=50 - response: - body: - string: '[1,"Sent","16075188299100241"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:29 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-25%22?seqn=51 - response: - body: - string: '[1,"Sent","16075188300515447"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:30 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-25%22?seqn=52 - response: - body: - string: '[1,"Sent","16075188301970447"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:30 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-26%22?seqn=53 - response: - body: - string: '[1,"Sent","16075188303379672"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:30 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-26%22?seqn=54 - response: - body: - string: '[1,"Sent","16075188304935521"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:30 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-27%22?seqn=55 - response: - body: - string: '[1,"Sent","16075188306296636"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:30 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-27%22?seqn=56 - response: - body: - string: '[1,"Sent","16075188307771104"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:30 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-28%22?seqn=57 - response: - body: - string: '[1,"Sent","16075188309446630"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:30 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-28%22?seqn=58 - response: - body: - string: '[1,"Sent","16075188311222240"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:31 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-29%22?seqn=59 - response: - body: - string: '[1,"Sent","16075188312681714"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:31 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-29%22?seqn=60 - response: - body: - string: '[1,"Sent","16075188314151880"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:31 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-30%22?seqn=61 - response: - body: - string: '[1,"Sent","16075188315580264"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:31 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-30%22?seqn=62 - response: - body: - string: '[1,"Sent","16075188317105611"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:31 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-31%22?seqn=63 - response: - body: - string: '[1,"Sent","16075188318813915"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:31 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-31%22?seqn=64 - response: - body: - string: '[1,"Sent","16075188320306461"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:32 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-32%22?seqn=65 - response: - body: - string: '[1,"Sent","16075188321937173"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:32 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-32%22?seqn=66 - response: - body: - string: '[1,"Sent","16075188323409370"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:32 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-33%22?seqn=67 - response: - body: - string: '[1,"Sent","16075188324984408"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:32 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-33%22?seqn=68 - response: - body: - string: '[1,"Sent","16075188326403331"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:32 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-34%22?seqn=69 - response: - body: - string: '[1,"Sent","16075188327838422"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:32 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-34%22?seqn=70 - response: - body: - string: '[1,"Sent","16075188329298594"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:32 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-35%22?seqn=71 - response: - body: - string: '[1,"Sent","16075188331069338"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:33 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-35%22?seqn=72 - response: - body: - string: '[1,"Sent","16075188332829473"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:33 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-36%22?seqn=73 - response: - body: - string: '[1,"Sent","16075188334421969"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:33 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-36%22?seqn=74 - response: - body: - string: '[1,"Sent","16075188336063832"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:33 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-37%22?seqn=75 - response: - body: - string: '[1,"Sent","16075188337686375"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:33 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-37%22?seqn=76 - response: - body: - string: '[1,"Sent","16075188339124540"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:33 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-38%22?seqn=77 - response: - body: - string: '[1,"Sent","16075188340923840"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:34 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-38%22?seqn=78 - response: - body: - string: '[1,"Sent","16075188342385139"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:34 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-39%22?seqn=79 - response: - body: - string: '[1,"Sent","16075188343911691"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:34 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-39%22?seqn=80 - response: - body: - string: '[1,"Sent","16075188345468422"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:34 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-40%22?seqn=81 - response: - body: - string: '[1,"Sent","16075188346981595"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:34 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-40%22?seqn=82 - response: - body: - string: '[1,"Sent","16075188348487626"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:34 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-41%22?seqn=83 - response: - body: - string: '[1,"Sent","16075188350011718"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:35 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-41%22?seqn=84 - response: - body: - string: '[1,"Sent","16075188351583596"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:35 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-42%22?seqn=85 - response: - body: - string: '[1,"Sent","16075188352984975"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:35 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-42%22?seqn=86 - response: - body: - string: '[1,"Sent","16075188354424939"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:35 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-43%22?seqn=87 - response: - body: - string: '[1,"Sent","16075188356104375"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:35 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-43%22?seqn=88 - response: - body: - string: '[1,"Sent","16075188357663555"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:35 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-44%22?seqn=89 - response: - body: - string: '[1,"Sent","16075188359230064"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:35 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-44%22?seqn=90 - response: - body: - string: '[1,"Sent","16075188360809674"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:36 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-45%22?seqn=91 - response: - body: - string: '[1,"Sent","16075188362428367"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:36 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-45%22?seqn=92 - response: - body: - string: '[1,"Sent","16075188363888714"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:36 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-46%22?seqn=93 - response: - body: - string: '[1,"Sent","16075188365370959"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:36 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-46%22?seqn=94 - response: - body: - string: '[1,"Sent","16075188366913305"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:36 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-47%22?seqn=95 - response: - body: - string: '[1,"Sent","16075188368384222"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:36 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-47%22?seqn=96 - response: - body: - string: '[1,"Sent","16075188369816001"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:36 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-48%22?seqn=97 - response: - body: - string: '[1,"Sent","16075188371365052"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:37 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-48%22?seqn=98 - response: - body: - string: '[1,"Sent","16075188372935936"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:37 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-49%22?seqn=99 - response: - body: - string: '[1,"Sent","16075188374681523"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:37 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-49%22?seqn=100 - response: - body: - string: '[1,"Sent","16075188376367936"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:37 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-50%22?seqn=101 - response: - body: - string: '[1,"Sent","16075188379056716"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:37 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-50%22?seqn=102 - response: - body: - string: '[1,"Sent","16075188380681727"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:38 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-51%22?seqn=103 - response: - body: - string: '[1,"Sent","16075188382239997"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:38 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-51%22?seqn=104 - response: - body: - string: '[1,"Sent","16075188383723919"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:38 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-52%22?seqn=105 - response: - body: - string: '[1,"Sent","16075188385311059"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:38 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-52%22?seqn=106 - response: - body: - string: '[1,"Sent","16075188386812329"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:38 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-53%22?seqn=107 - response: - body: - string: '[1,"Sent","16075188388364796"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:38 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-53%22?seqn=108 - response: - body: - string: '[1,"Sent","16075188390073410"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:39 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-54%22?seqn=109 - response: - body: - string: '[1,"Sent","16075188391660278"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:39 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-54%22?seqn=110 - response: - body: - string: '[1,"Sent","16075188393195156"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:39 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-55%22?seqn=111 - response: - body: - string: '[1,"Sent","16075188394895424"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:39 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-55%22?seqn=112 - response: - body: - string: '[1,"Sent","16075188396461484"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:39 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-56%22?seqn=113 - response: - body: - string: '[1,"Sent","16075188397926266"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:39 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-56%22?seqn=114 - response: - body: - string: '[1,"Sent","16075188399560524"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:39 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-57%22?seqn=115 - response: - body: - string: '[1,"Sent","16075188401090850"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:40 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-57%22?seqn=116 - response: - body: - string: '[1,"Sent","16075188402785847"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:40 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-58%22?seqn=117 - response: - body: - string: '[1,"Sent","16075188404313890"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:40 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-58%22?seqn=118 - response: - body: - string: '[1,"Sent","16075188406925144"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:40 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-59%22?seqn=119 - response: - body: - string: '[1,"Sent","16075188408358121"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:40 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-59%22?seqn=120 - response: - body: - string: '[1,"Sent","16075188409857508"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:40 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-60%22?seqn=121 - response: - body: - string: '[1,"Sent","16075188411491337"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:41 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-60%22?seqn=122 - response: - body: - string: '[1,"Sent","16075188413026999"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:41 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-61%22?seqn=123 - response: - body: - string: '[1,"Sent","16075188414595245"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:41 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-61%22?seqn=124 - response: - body: - string: '[1,"Sent","16075188430099164"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:43 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-62%22?seqn=125 - response: - body: - string: '[1,"Sent","16075188431584708"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:43 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-62%22?seqn=126 - response: - body: - string: '[1,"Sent","16075188433082451"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:43 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-63%22?seqn=127 - response: - body: - string: '[1,"Sent","16075188434714344"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:43 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-63%22?seqn=128 - response: - body: - string: '[1,"Sent","16075188436465870"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:43 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-64%22?seqn=129 - response: - body: - string: '[1,"Sent","16075188438183538"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:43 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-64%22?seqn=130 - response: - body: - string: '[1,"Sent","16075188439739693"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:43 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-65%22?seqn=131 - response: - body: - string: '[1,"Sent","16075188441240780"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:44 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-65%22?seqn=132 - response: - body: - string: '[1,"Sent","16075188442844173"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:44 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-66%22?seqn=133 - response: - body: - string: '[1,"Sent","16075188444467627"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:44 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-66%22?seqn=134 - response: - body: - string: '[1,"Sent","16075188446256727"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:44 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-67%22?seqn=135 - response: - body: - string: '[1,"Sent","16075188447860582"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:44 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-67%22?seqn=136 - response: - body: - string: '[1,"Sent","16075188449514632"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:44 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-68%22?seqn=137 - response: - body: - string: '[1,"Sent","16075188451098882"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:45 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-68%22?seqn=138 - response: - body: - string: '[1,"Sent","16075188452748860"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:45 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-69%22?seqn=139 - response: - body: - string: '[1,"Sent","16075188454178747"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:45 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-69%22?seqn=140 - response: - body: - string: '[1,"Sent","16075188456273294"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:45 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-70%22?seqn=141 - response: - body: - string: '[1,"Sent","16075188457771085"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:45 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-70%22?seqn=142 - response: - body: - string: '[1,"Sent","16075188459518206"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:45 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-71%22?seqn=143 - response: - body: - string: '[1,"Sent","16075188461282986"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:46 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-71%22?seqn=144 - response: - body: - string: '[1,"Sent","16075188462740688"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:46 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-72%22?seqn=145 - response: - body: - string: '[1,"Sent","16075188464454697"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:46 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-72%22?seqn=146 - response: - body: - string: '[1,"Sent","16075188466195697"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:46 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-73%22?seqn=147 - response: - body: - string: '[1,"Sent","16075188467732783"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:46 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-73%22?seqn=148 - response: - body: - string: '[1,"Sent","16075188470625081"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:47 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-74%22?seqn=149 - response: - body: - string: '[1,"Sent","16075188472232621"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:47 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-74%22?seqn=150 - response: - body: - string: '[1,"Sent","16075188474049642"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:47 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-75%22?seqn=151 - response: - body: - string: '[1,"Sent","16075188475703552"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:47 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-75%22?seqn=152 - response: - body: - string: '[1,"Sent","16075188477251205"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:47 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-76%22?seqn=153 - response: - body: - string: '[1,"Sent","16075188478761748"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:47 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-76%22?seqn=154 - response: - body: - string: '[1,"Sent","16075188480310813"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:48 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-77%22?seqn=155 - response: - body: - string: '[1,"Sent","16075188482289667"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:48 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-77%22?seqn=156 - response: - body: - string: '[1,"Sent","16075188483803104"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:48 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-78%22?seqn=157 - response: - body: - string: '[1,"Sent","16075188485300097"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:48 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-78%22?seqn=158 - response: - body: - string: '[1,"Sent","16075188486906927"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:48 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-79%22?seqn=159 - response: - body: - string: '[1,"Sent","16075188488538286"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:48 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-79%22?seqn=160 - response: - body: - string: '[1,"Sent","16075188490068474"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:49 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-80%22?seqn=161 - response: - body: - string: '[1,"Sent","16075188491838117"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:49 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-80%22?seqn=162 - response: - body: - string: '[1,"Sent","16075188493332859"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:49 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-81%22?seqn=163 - response: - body: - string: '[1,"Sent","16075188494863795"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:49 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-81%22?seqn=164 - response: - body: - string: '[1,"Sent","16075188496503293"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:49 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-82%22?seqn=165 - response: - body: - string: '[1,"Sent","16075188498064217"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:49 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-82%22?seqn=166 - response: - body: - string: '[1,"Sent","16075188499681363"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:49 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-83%22?seqn=167 - response: - body: - string: '[1,"Sent","16075188501558852"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:50 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-83%22?seqn=168 - response: - body: - string: '[1,"Sent","16075188503055219"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:50 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-84%22?seqn=169 - response: - body: - string: '[1,"Sent","16075188504599197"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:50 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-84%22?seqn=170 - response: - body: - string: '[1,"Sent","16075188506336204"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:50 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-85%22?seqn=171 - response: - body: - string: '[1,"Sent","16075188507982995"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:50 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-85%22?seqn=172 - response: - body: - string: '[1,"Sent","16075188509540486"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:50 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-86%22?seqn=173 - response: - body: - string: '[1,"Sent","16075188517574918"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:51 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-86%22?seqn=174 - response: - body: - string: '[1,"Sent","16075188519148540"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:51 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-87%22?seqn=175 - response: - body: - string: '[1,"Sent","16075188520691747"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:52 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-87%22?seqn=176 - response: - body: - string: '[1,"Sent","16075188522330271"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:52 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-88%22?seqn=177 - response: - body: - string: '[1,"Sent","16075188523899934"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:52 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-88%22?seqn=178 - response: - body: - string: '[1,"Sent","16075188525630569"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:52 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-89%22?seqn=179 - response: - body: - string: '[1,"Sent","16075188527236383"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:52 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-89%22?seqn=180 - response: - body: - string: '[1,"Sent","16075188528713298"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:52 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-90%22?seqn=181 - response: - body: - string: '[1,"Sent","16075188530472803"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:53 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-90%22?seqn=182 - response: - body: - string: '[1,"Sent","16075188532415358"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:53 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-91%22?seqn=183 - response: - body: - string: '[1,"Sent","16075188533987978"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:53 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-91%22?seqn=184 - response: - body: - string: '[1,"Sent","16075188535533569"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:53 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-92%22?seqn=185 - response: - body: - string: '[1,"Sent","16075188537355434"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:53 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-92%22?seqn=186 - response: - body: - string: '[1,"Sent","16075188539066446"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:53 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-93%22?seqn=187 - response: - body: - string: '[1,"Sent","16075188540618815"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:54 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-93%22?seqn=188 - response: - body: - string: '[1,"Sent","16075188543268235"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:54 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-94%22?seqn=189 - response: - body: - string: '[1,"Sent","16075188544804361"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:54 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-94%22?seqn=190 - response: - body: - string: '[1,"Sent","16075188546427611"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:54 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-95%22?seqn=191 - response: - body: - string: '[1,"Sent","16075188548008431"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:54 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-95%22?seqn=192 - response: - body: - string: '[1,"Sent","16075188549737167"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:54 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-96%22?seqn=193 - response: - body: - string: '[1,"Sent","16075188551287545"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:55 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-96%22?seqn=194 - response: - body: - string: '[1,"Sent","16075188552826304"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:55 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-97%22?seqn=195 - response: - body: - string: '[1,"Sent","16075188554445579"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:55 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-97%22?seqn=196 - response: - body: - string: '[1,"Sent","16075188556063934"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:55 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-98%22?seqn=197 - response: - body: - string: '[1,"Sent","16075188557842207"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:55 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-98%22?seqn=198 - response: - body: - string: '[1,"Sent","16075188559362925"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:55 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-99%22?seqn=199 - response: - body: - string: '[1,"Sent","16075188560898076"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-99%22?seqn=200 - response: - body: - string: '[1,"Sent","16075188562492892"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-100%22?seqn=201 - response: - body: - string: '[1,"Sent","16075188564167007"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-100%22?seqn=202 - response: - body: - string: '[1,"Sent","16075188567040347"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-101%22?seqn=203 - response: - body: - string: '[1,"Sent","16075188568711371"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-101%22?seqn=204 - response: - body: - string: '[1,"Sent","16075188570318583"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-102%22?seqn=205 - response: - body: - string: '[1,"Sent","16075188571915808"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-102%22?seqn=206 - response: - body: - string: '[1,"Sent","16075188575591423"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-103%22?seqn=207 - response: - body: - string: '[1,"Sent","16075188578061474"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-103%22?seqn=208 - response: - body: - string: '[1,"Sent","16075188579556566"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-104%22?seqn=209 - response: - body: - string: '[1,"Sent","16075188581117872"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-104%22?seqn=210 - response: - body: - string: '[1,"Sent","16075188582615875"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-105%22?seqn=211 - response: - body: - string: '[1,"Sent","16075188584186885"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-105%22?seqn=212 - response: - body: - string: '[1,"Sent","16075188585689694"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-106%22?seqn=213 - response: - body: - string: '[1,"Sent","16075188587425056"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-106%22?seqn=214 - response: - body: - string: '[1,"Sent","16075188588914177"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-107%22?seqn=215 - response: - body: - string: '[1,"Sent","16075188590403213"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-107%22?seqn=216 - response: - body: - string: '[1,"Sent","16075188592057579"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-108%22?seqn=217 - response: - body: - string: '[1,"Sent","16075188593693287"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-108%22?seqn=218 - response: - body: - string: '[1,"Sent","16075188595417399"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-109%22?seqn=219 - response: - body: - string: '[1,"Sent","16075188597113845"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-109%22?seqn=220 - response: - body: - string: '[1,"Sent","16075188598708746"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:00:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-110%22?seqn=221 - response: - body: - string: '[1,"Sent","16075188600339675"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-110%22?seqn=222 - response: - body: - string: '[1,"Sent","16075188602159790"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-111%22?seqn=223 - response: - body: - string: '[1,"Sent","16075188603630935"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-111%22?seqn=224 - response: - body: - string: '[1,"Sent","16075188605205994"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-112%22?seqn=225 - response: - body: - string: '[1,"Sent","16075188606855787"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-112%22?seqn=226 - response: - body: - string: '[1,"Sent","16075188608512761"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-113%22?seqn=227 - response: - body: - string: '[1,"Sent","16075188610272783"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-113%22?seqn=228 - response: - body: - string: '[1,"Sent","16075188611825923"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-114%22?seqn=229 - response: - body: - string: '[1,"Sent","16075188613385919"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-114%22?seqn=230 - response: - body: - string: '[1,"Sent","16075188616274571"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-115%22?seqn=231 - response: - body: - string: '[1,"Sent","16075188617980170"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-115%22?seqn=232 - response: - body: - string: '[1,"Sent","16075188622960572"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-116%22?seqn=233 - response: - body: - string: '[1,"Sent","16075188624621639"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-116%22?seqn=234 - response: - body: - string: '[1,"Sent","16075188626206749"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-117%22?seqn=235 - response: - body: - string: '[1,"Sent","16075188628798511"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-117%22?seqn=236 - response: - body: - string: '[1,"Sent","16075188630599688"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-118%22?seqn=237 - response: - body: - string: '[1,"Sent","16075188632156824"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-118%22?seqn=238 - response: - body: - string: '[1,"Sent","16075188633689414"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-1/0/%22hey-119%22?seqn=239 - response: - body: - string: '[1,"Sent","16075188635308226"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-ch-2/0/%22hey-119%22?seqn=240 - response: - body: - string: '[1,"Sent","16075188636837259"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/v2/history/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/fetch-messages-ch-1?count=100 - response: - body: - string: !!binary | - H4sIAAAAAAAAA0TNu00DUBAF0VaQYyPtffuvxXKIRAt0T4CYl40mOa/X4/vr5/PY4/nxV6IO5VRQ - SRXV1FD7X47hGI7hGI7hGI7hGI7hGIERGIERGIERGIERGIERGImRGImRGImRGImRGImRGIVRGIVR - GIVRGIVRGIVRGI3RGI3RGI3RGI3RGI3RGIMxGIMxGIMxGIMxGIMxGIuxGIuxGIuxGIuxGIuxGDIQ - GYoMRoYjA5IhyaBkWDIw2dV0NV1NV9PVdDVdTVfT1XQ17eP9VFmnZk7PKd80Tnm6zTn1/gUAAP// - AwArTACbIgQAAA== - headers: - Access-Control-Allow-Methods: - - GET, POST, DELETE, OPTIONS - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:04 GMT - Server: - - Pubnub - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/v2/history/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/fetch-messages-ch-2?count=100 - response: - body: - string: !!binary | - H4sIAAAAAAAAA0TNO2oDURAF0a2YiSXoO/1fi1Bo8Ba0ewfG9bKikvN6XT/fn+dt1+Prr0TdlFNB - JVVUU0PtfzmGYziGYziGYziGYziGYwRGYARGYARGYARGYARGYCRGYiRGYiRGYiRGYiRGYhRGYRRG - YRRGYRRGYRRGYTRGYzRGYzRGYzRGYzRGYwzGYAzGYAzGYAzGYAzGYCzGYizGYizGYizGYizGYshA - ZCgyGBmODEiGJIOSYcnAZEfT0XQ0HU1H09F0NB1NR9PRtNf7obJOzdy9VSk5p7zG+859/wIAAP// - AwBgAeJkIgQAAA== - headers: - Access-Control-Allow-Methods: - - GET, POST, DELETE, OPTIONS - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:05 GMT - Server: - - Pubnub - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/v3/history/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/fetch-messages-ch-1,fetch-messages-ch-2?include_meta=false&max=25 - response: - body: - string: !!binary | - H4sIAAAAAAAAA5SW3WobQQyFXyXstQ2SZvSXVwmhmLCpSxMHsu5FMX73aqGFUuYM9M5rfFaeo09H - c1u26+n6Y1seH4To8LCsn58fn/X0enrb1j/PX97XbTt9Xev7ZakvX86ny2V921W35XW9vpyPv3+x - HeuzLI9Pt+UvzXn9eUzdlddv7+v14/t62V/FRq4coT29OZsv90O98F+hYaFKiDXqY6FPhEbWsgFh - TITZTFJ0XDGx0KSnRMpQyEQTpVOn1sfuMDFWOjUOjQZqykSpmtwFKdtEmaqmZqBmx8pqJWv42Fqm - CT+hFmk57ibTBKCIOiY78nZCUAqpqyc45wSh1KrYEiknDGU4hXfgLWOGjIQ1PWn8bxkzZKR10ETe - MmbIKJTFjUFNzJAxh2gi+hgzZGziXR3VxAyZSNZZHcwnY4ZMTMi8g34yZqiSq5y1COAQZshaK+J7 - OTFKTGbMkJWwebm73J8Pg+zm/87uIIrexo4ntk0Ljhr2Ph73xK6p9t4VTV5i00oTXYTGw17zCPdT - oZxBDuZumt291hqBktPstnDm2orjDhOeu6I/K0cJUEV47sofMu4OqKo1Cx0KZvZA0zPN7s5RIzDG - YJ7d3kVJUVcmBOW+UIXRdpsgVNs/W3ELujJhKPd2BsCdp9lNraWhvTjN7lYRkw14O81ui31cwDnL - OUSCMYmLozvHNLtbi7p1oBydZDd7jSc72m44hOpSZsJ1Exz3c5bdBUHWggPzyZghK/LqviJgyqbZ - rY1CpIh/vt9/AQAA//8DAEkp9kW7CwAA - headers: - Access-Control-Allow-Methods: - - GET, POST, DELETE, OPTIONS - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:01:05 GMT - Server: - - Pubnub - status: - code: 200 - message: OK -version: 1 diff --git a/tests/integrational/fixtures/native_sync/fetch_messages/max_25_with_actions.json b/tests/integrational/fixtures/native_sync/fetch_messages/max_25_with_actions.json new file mode 100644 index 00000000..cd6a630a --- /dev/null +++ b/tests/integrational/fixtures/native_sync/fetch_messages/max_25_with_actions.json @@ -0,0 +1,6489 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-0%22?seqn=1", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687557392439\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-1%22?seqn=2", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687557764250\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-2%22?seqn=3", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687558126568\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-3%22?seqn=4", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687558497044\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-4%22?seqn=5", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687558961789\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-5%22?seqn=6", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687559335551\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-6%22?seqn=7", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687559709065\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-7%22?seqn=8", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687560071519\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-8%22?seqn=9", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687560448631\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-9%22?seqn=10", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687560810786\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-10%22?seqn=11", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687561176207\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-11%22?seqn=12", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687561521437\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-12%22?seqn=13", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687561879549\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-13%22?seqn=14", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687562236711\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-14%22?seqn=15", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687562593356\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-15%22?seqn=16", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687562963294\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-16%22?seqn=17", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687563338913\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-17%22?seqn=18", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687563706569\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-18%22?seqn=19", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687564075881\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-19%22?seqn=20", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687564453945\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-20%22?seqn=21", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687564823958\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-21%22?seqn=22", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687565186370\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-22%22?seqn=23", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687565563790\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-23%22?seqn=24", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687565944375\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-24%22?seqn=25", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687566330245\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-25%22?seqn=26", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687566719219\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-26%22?seqn=27", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687567097924\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-27%22?seqn=28", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687567475544\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-28%22?seqn=29", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687567870930\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-29%22?seqn=30", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687568258333\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-30%22?seqn=31", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687568648968\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-31%22?seqn=32", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687569041150\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-32%22?seqn=33", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687569435601\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-33%22?seqn=34", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687569815033\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-34%22?seqn=35", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687570200503\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-35%22?seqn=36", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687570600993\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-36%22?seqn=37", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687570973633\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-37%22?seqn=38", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687571364087\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-38%22?seqn=39", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687571768420\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-39%22?seqn=40", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687572151258\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-40%22?seqn=41", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687572531776\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-41%22?seqn=42", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687572939042\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-42%22?seqn=43", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687573335473\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-43%22?seqn=44", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687573736407\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-44%22?seqn=45", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687574126000\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-45%22?seqn=46", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687574514934\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-46%22?seqn=47", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687574906668\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-47%22?seqn=48", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687575299514\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-48%22?seqn=49", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687575703522\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-49%22?seqn=50", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687576110796\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-50%22?seqn=51", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687576512099\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-51%22?seqn=52", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687576909461\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-52%22?seqn=53", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687577329493\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-53%22?seqn=54", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687577723155\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-54%22?seqn=55", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687578152066\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-55%22?seqn=56", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687578565595\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-56%22?seqn=57", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687579044817\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-57%22?seqn=58", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687579456472\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-58%22?seqn=59", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687579848779\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-59%22?seqn=60", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687580239705\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-60%22?seqn=61", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687580637554\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-61%22?seqn=62", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687581040737\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-62%22?seqn=63", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687581434201\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-63%22?seqn=64", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687581821472\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-64%22?seqn=65", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687582216605\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-65%22?seqn=66", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687582606635\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-66%22?seqn=67", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687583006308\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-67%22?seqn=68", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687583412656\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-68%22?seqn=69", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687583813364\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-69%22?seqn=70", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687584218599\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-70%22?seqn=71", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687584634176\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-71%22?seqn=72", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687585047230\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-72%22?seqn=73", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687585450626\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-73%22?seqn=74", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687585853902\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-74%22?seqn=75", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687586271995\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-75%22?seqn=76", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687586678030\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-76%22?seqn=77", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687587080825\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-77%22?seqn=78", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687587483337\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-78%22?seqn=79", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687587898390\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-79%22?seqn=80", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687588303689\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-80%22?seqn=81", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687588708840\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-81%22?seqn=82", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687589111430\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-82%22?seqn=83", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687589516138\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-83%22?seqn=84", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687589943574\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-84%22?seqn=85", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687590358643\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-85%22?seqn=86", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687590766438\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-86%22?seqn=87", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687591181331\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-87%22?seqn=88", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687591609385\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-88%22?seqn=89", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687592033475\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-89%22?seqn=90", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687592454020\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-90%22?seqn=91", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687592877269\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-91%22?seqn=92", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687593284112\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-92%22?seqn=93", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687593706572\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-93%22?seqn=94", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687594127177\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-94%22?seqn=95", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687594553789\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-95%22?seqn=96", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687594974140\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-96%22?seqn=97", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687595387243\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-97%22?seqn=98", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687595810294\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-98%22?seqn=99", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687596236817\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-99%22?seqn=100", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687596676400\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-100%22?seqn=101", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687597116110\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-101%22?seqn=102", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687597555072\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-102%22?seqn=103", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687597976334\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-103%22?seqn=104", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687598400727\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-104%22?seqn=105", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687598826459\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-105%22?seqn=106", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687599269201\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-106%22?seqn=107", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687599726445\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-107%22?seqn=108", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687600185081\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-108%22?seqn=109", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687600627568\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-109%22?seqn=110", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687601053794\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-110%22?seqn=111", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687601494518\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-111%22?seqn=112", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687601926050\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-112%22?seqn=113", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687602358579\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-113%22?seqn=114", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687602792178\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-114%22?seqn=115", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687603221884\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-115%22?seqn=116", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687603765565\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-116%22?seqn=117", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687604201456\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-117%22?seqn=118", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687604633774\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-118%22?seqn=119", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687605068811\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/fetch-messages-actions-ch-1/0/%22hey-119%22?seqn=120", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16782687605494974\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v2/history/sub-key/{PN_KEY_SUBSCRIBE}/channel/fetch-messages-actions-ch-1?count=100", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Age": [ + "0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:01 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Server": [ + "Pubnub Storage" + ], + "Content-Encoding": [ + "gzip" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAAzzNuW0DURAE0VzWpoDpnTsWgiYBpaDsaVD1vUYbr57P6/f993Pb9fgOMW6GM4KRjGI0Yxj7PxzZkR3ZkR3ZkR3ZkR3ZkQM5kAM5kAM5kAM5kAM5kBM5kRM5kRM5kRM5kRM5kQu5kAu5kAu5kAu5kAu5kBu5kRu5kRu5kRu5kRu5kQd5kAd5kAd5kAd5kAd5kBd5kRd5kRd5kRd5kRd5kWXQMmwZuAxdBi/DlxGQUZCRkJ2GTkOnodPQaeg0dBo6DZ2GTkN7vR6qnrums2Ju35zzlGVsbMfrAwAA//8DAOHxada/AwAA" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/v3/history-with-actions/sub-key/{PN_KEY_SUBSCRIBE}/channel/fetch-messages-actions-ch-1?include_message_type=true&include_meta=false&include_type=true&max=25", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Age": [ + "0" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Credentials": [ + "true" + ], + "Date": [ + "Wed, 08 Mar 2023 09:46:01 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Encoding": [ + "gzip" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAA5yWUWsCMQyA/4r0WSHpNUm7vzKGHFKnTM/h3R6G+N8X7Q02sGXLa9r7GpJ8vV7cOPXTx+ieFh5guXCbXT8M+XALXNw2T5vd6pjHsX/N46rfTPvTMK40hrr+fHHz0nr6fM8aGT4OB2XMUQ24Xf5cJXIanPbHPJ3e8nALI0v0HIVSSBIwwH1HgTh3XerZf0NzA01dFB86K1pa6IjgU7CiYwPNvuOI5XBDQVILzcIBrLXG+cvHfRRERrSzsZG3EBGIN1ZbO9ViJ+Gus3YSoYzX45pELbZ4aysRSlYVtvoTqHT7/2OC0HIyeU4eSkcs7JaUSTTvUE63sOtWMgBGgmjPu66lstkLcdlhybvuJYN2oxPzbfJt3aM5UXZIgdCcN9a9VLYOCpDZeax7yeA7iiTm+ca6l8qW5FHsNal7ydB5jzGa7xOse6lsYSI2u4N1LxmCCh+o7DDM9/zDejyDQW9YEXtNWl4ScIzzlFrybnlJ6o4+T37/d170deLy+Xw6r3+8c2577kF93Wz7w5ivXwAAAP//AwAmeY0DWgkAAA==" + } + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/native_sync/fetch_messages/max_25_with_actions.yaml b/tests/integrational/fixtures/native_sync/fetch_messages/max_25_with_actions.yaml deleted file mode 100644 index aa1731b7..00000000 --- a/tests/integrational/fixtures/native_sync/fetch_messages/max_25_with_actions.yaml +++ /dev/null @@ -1,4170 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-0%22?seqn=1 - response: - body: - string: '[1,"Sent","16075190358030554"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:55 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-1%22?seqn=2 - response: - body: - string: '[1,"Sent","16075190359592966"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:55 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-2%22?seqn=3 - response: - body: - string: '[1,"Sent","16075190361073010"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-3%22?seqn=4 - response: - body: - string: '[1,"Sent","16075190362531028"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-4%22?seqn=5 - response: - body: - string: '[1,"Sent","16075190364032342"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-5%22?seqn=6 - response: - body: - string: '[1,"Sent","16075190365479057"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-6%22?seqn=7 - response: - body: - string: '[1,"Sent","16075190366912883"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-7%22?seqn=8 - response: - body: - string: '[1,"Sent","16075190368368766"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-8%22?seqn=9 - response: - body: - string: '[1,"Sent","16075190369888900"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:56 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-9%22?seqn=10 - response: - body: - string: '[1,"Sent","16075190371384891"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-10%22?seqn=11 - response: - body: - string: '[1,"Sent","16075190372772089"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-11%22?seqn=12 - response: - body: - string: '[1,"Sent","16075190374244320"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-12%22?seqn=13 - response: - body: - string: '[1,"Sent","16075190375799207"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-13%22?seqn=14 - response: - body: - string: '[1,"Sent","16075190377243263"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-14%22?seqn=15 - response: - body: - string: '[1,"Sent","16075190378684077"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:57 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-15%22?seqn=16 - response: - body: - string: '[1,"Sent","16075190380117582"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-16%22?seqn=17 - response: - body: - string: '[1,"Sent","16075190381599199"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-17%22?seqn=18 - response: - body: - string: '[1,"Sent","16075190383062222"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-18%22?seqn=19 - response: - body: - string: '[1,"Sent","16075190384510264"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-19%22?seqn=20 - response: - body: - string: '[1,"Sent","16075190386053770"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-20%22?seqn=21 - response: - body: - string: '[1,"Sent","16075190387536451"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-21%22?seqn=22 - response: - body: - string: '[1,"Sent","16075190389051030"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:58 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-22%22?seqn=23 - response: - body: - string: '[1,"Sent","16075190390578316"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-23%22?seqn=24 - response: - body: - string: '[1,"Sent","16075190392014071"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-24%22?seqn=25 - response: - body: - string: '[1,"Sent","16075190393490815"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-25%22?seqn=26 - response: - body: - string: '[1,"Sent","16075190394975812"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-26%22?seqn=27 - response: - body: - string: '[1,"Sent","16075190396441272"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-27%22?seqn=28 - response: - body: - string: '[1,"Sent","16075190397818949"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-28%22?seqn=29 - response: - body: - string: '[1,"Sent","16075190399409082"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:03:59 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-29%22?seqn=30 - response: - body: - string: '[1,"Sent","16075190400941496"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-30%22?seqn=31 - response: - body: - string: '[1,"Sent","16075190402614596"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-31%22?seqn=32 - response: - body: - string: '[1,"Sent","16075190404141508"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-32%22?seqn=33 - response: - body: - string: '[1,"Sent","16075190405605957"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-33%22?seqn=34 - response: - body: - string: '[1,"Sent","16075190407151554"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-34%22?seqn=35 - response: - body: - string: '[1,"Sent","16075190408693841"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:00 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-35%22?seqn=36 - response: - body: - string: '[1,"Sent","16075190410317147"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-36%22?seqn=37 - response: - body: - string: '[1,"Sent","16075190411809277"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-37%22?seqn=38 - response: - body: - string: '[1,"Sent","16075190413468037"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-38%22?seqn=39 - response: - body: - string: '[1,"Sent","16075190414893492"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-39%22?seqn=40 - response: - body: - string: '[1,"Sent","16075190416308626"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-40%22?seqn=41 - response: - body: - string: '[1,"Sent","16075190417722774"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-41%22?seqn=42 - response: - body: - string: '[1,"Sent","16075190419178014"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:01 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-42%22?seqn=43 - response: - body: - string: '[1,"Sent","16075190420726602"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-43%22?seqn=44 - response: - body: - string: '[1,"Sent","16075190422313978"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-44%22?seqn=45 - response: - body: - string: '[1,"Sent","16075190423744442"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-45%22?seqn=46 - response: - body: - string: '[1,"Sent","16075190425306129"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-46%22?seqn=47 - response: - body: - string: '[1,"Sent","16075190426809680"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-47%22?seqn=48 - response: - body: - string: '[1,"Sent","16075190428257122"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-48%22?seqn=49 - response: - body: - string: '[1,"Sent","16075190429694129"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:02 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-49%22?seqn=50 - response: - body: - string: '[1,"Sent","16075190431194238"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-50%22?seqn=51 - response: - body: - string: '[1,"Sent","16075190432676119"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-51%22?seqn=52 - response: - body: - string: '[1,"Sent","16075190434160471"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-52%22?seqn=53 - response: - body: - string: '[1,"Sent","16075190435800583"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-53%22?seqn=54 - response: - body: - string: '[1,"Sent","16075190437307648"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-54%22?seqn=55 - response: - body: - string: '[1,"Sent","16075190438901992"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:03 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-55%22?seqn=56 - response: - body: - string: '[1,"Sent","16075190440407001"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:04 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-56%22?seqn=57 - response: - body: - string: '[1,"Sent","16075190441840241"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:04 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-57%22?seqn=58 - response: - body: - string: '[1,"Sent","16075190443264522"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:04 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-58%22?seqn=59 - response: - body: - string: '[1,"Sent","16075190444719997"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:04 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-59%22?seqn=60 - response: - body: - string: '[1,"Sent","16075190446227766"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:04 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-60%22?seqn=61 - response: - body: - string: '[1,"Sent","16075190447766425"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:04 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-61%22?seqn=62 - response: - body: - string: '[1,"Sent","16075190449307512"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:04 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-62%22?seqn=63 - response: - body: - string: '[1,"Sent","16075190450964219"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:05 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-63%22?seqn=64 - response: - body: - string: '[1,"Sent","16075190452503068"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:05 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-64%22?seqn=65 - response: - body: - string: '[1,"Sent","16075190454179078"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:05 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-65%22?seqn=66 - response: - body: - string: '[1,"Sent","16075190455649012"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:05 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-66%22?seqn=67 - response: - body: - string: '[1,"Sent","16075190457297455"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:05 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-67%22?seqn=68 - response: - body: - string: '[1,"Sent","16075190459000371"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:05 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-68%22?seqn=69 - response: - body: - string: '[1,"Sent","16075190460457037"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:06 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-69%22?seqn=70 - response: - body: - string: '[1,"Sent","16075190461999122"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:06 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-70%22?seqn=71 - response: - body: - string: '[1,"Sent","16075190463819990"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:06 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-71%22?seqn=72 - response: - body: - string: '[1,"Sent","16075190465767383"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:06 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-72%22?seqn=73 - response: - body: - string: '[1,"Sent","16075190467653255"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:06 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-73%22?seqn=74 - response: - body: - string: '[1,"Sent","16075190469424962"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:06 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-74%22?seqn=75 - response: - body: - string: '[1,"Sent","16075190470946958"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:07 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-75%22?seqn=76 - response: - body: - string: '[1,"Sent","16075190472517226"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:07 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-76%22?seqn=77 - response: - body: - string: '[1,"Sent","16075190473964740"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:07 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-77%22?seqn=78 - response: - body: - string: '[1,"Sent","16075190475435852"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:07 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-78%22?seqn=79 - response: - body: - string: '[1,"Sent","16075190476983670"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:07 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-79%22?seqn=80 - response: - body: - string: '[1,"Sent","16075190478481524"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:07 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-80%22?seqn=81 - response: - body: - string: '[1,"Sent","16075190480115667"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:08 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-81%22?seqn=82 - response: - body: - string: '[1,"Sent","16075190481553175"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:08 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-82%22?seqn=83 - response: - body: - string: '[1,"Sent","16075190483145534"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:08 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-83%22?seqn=84 - response: - body: - string: '[1,"Sent","16075190484683657"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:08 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-84%22?seqn=85 - response: - body: - string: '[1,"Sent","16075190486175682"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:08 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-85%22?seqn=86 - response: - body: - string: '[1,"Sent","16075190587670821"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:18 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-86%22?seqn=87 - response: - body: - string: '[1,"Sent","16075190589275649"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:18 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-87%22?seqn=88 - response: - body: - string: '[1,"Sent","16075190590770884"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:19 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-88%22?seqn=89 - response: - body: - string: '[1,"Sent","16075190592644444"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:19 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-89%22?seqn=90 - response: - body: - string: '[1,"Sent","16075190594243502"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:19 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-90%22?seqn=91 - response: - body: - string: '[1,"Sent","16075190595728851"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:19 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-91%22?seqn=92 - response: - body: - string: '[1,"Sent","16075190597448279"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:19 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-92%22?seqn=93 - response: - body: - string: '[1,"Sent","16075190599011148"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:19 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-93%22?seqn=94 - response: - body: - string: '[1,"Sent","16075190600562137"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:20 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-94%22?seqn=95 - response: - body: - string: '[1,"Sent","16075190602191148"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:20 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-95%22?seqn=96 - response: - body: - string: '[1,"Sent","16075190603666320"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:20 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-96%22?seqn=97 - response: - body: - string: '[1,"Sent","16075190605103323"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:20 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-97%22?seqn=98 - response: - body: - string: '[1,"Sent","16075190606615823"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:20 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-98%22?seqn=99 - response: - body: - string: '[1,"Sent","16075190608085962"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:20 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-99%22?seqn=100 - response: - body: - string: '[1,"Sent","16075190609660189"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:20 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-100%22?seqn=101 - response: - body: - string: '[1,"Sent","16075190611330780"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:21 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-101%22?seqn=102 - response: - body: - string: '[1,"Sent","16075190612817808"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:21 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-102%22?seqn=103 - response: - body: - string: '[1,"Sent","16075190614359327"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:21 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-103%22?seqn=104 - response: - body: - string: '[1,"Sent","16075190615823898"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:21 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-104%22?seqn=105 - response: - body: - string: '[1,"Sent","16075190617332432"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:21 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-105%22?seqn=106 - response: - body: - string: '[1,"Sent","16075190618895409"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:21 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-106%22?seqn=107 - response: - body: - string: '[1,"Sent","16075190620367862"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:22 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-107%22?seqn=108 - response: - body: - string: '[1,"Sent","16075190622036422"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:22 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-108%22?seqn=109 - response: - body: - string: '[1,"Sent","16075190623524937"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:22 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-109%22?seqn=110 - response: - body: - string: '[1,"Sent","16075190625078130"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:22 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-110%22?seqn=111 - response: - body: - string: '[1,"Sent","16075190626560082"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:22 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-111%22?seqn=112 - response: - body: - string: '[1,"Sent","16075190628046233"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:22 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-112%22?seqn=113 - response: - body: - string: '[1,"Sent","16075190629823867"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:22 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-113%22?seqn=114 - response: - body: - string: '[1,"Sent","16075190631560342"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:23 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-114%22?seqn=115 - response: - body: - string: '[1,"Sent","16075190633110168"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:23 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-115%22?seqn=116 - response: - body: - string: '[1,"Sent","16075190634798384"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:23 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-116%22?seqn=117 - response: - body: - string: '[1,"Sent","16075190636274898"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:23 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-117%22?seqn=118 - response: - body: - string: '[1,"Sent","16075190637921371"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:23 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-118%22?seqn=119 - response: - body: - string: '[1,"Sent","16075190639807408"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:23 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/fetch-messages-actions-ch-1/0/%22hey-119%22?seqn=120 - response: - body: - string: '[1,"Sent","16075190641439209"]' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:24 GMT - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/v2/history/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/fetch-messages-actions-ch-1?count=100 - response: - body: - string: !!binary | - H4sIAAAAAAAAA0TNO2oDURAF0a2YiSXoO/1fi1Bo8Ba0ewfG9bKikvN6XT/fn+dt1+Prr0TdlFNB - JVVUU0PtfzmGYziGYziGYziGYziGYwRGYARGYARGYARGYARGYCRGYiRGYiRGYiRGYiRGYhRGYRRG - YRRGYRRGYRRGYTRGYzRGYzRGYzRGYzRGYwzGYAzGYAzGYAzGYAzGYCzGYizGYizGYizGYizGYshA - ZCgyGBmODEiGJIOSYcnAZEfT0XQ0HU1H09F0NB1NR9PRtNf7obJOrfl0ekWKU6HwvW3fvwAAAP// - AwAzlEeEIgQAAA== - headers: - Access-Control-Allow-Methods: - - GET, POST, DELETE, OPTIONS - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:25 GMT - Server: - - Pubnub - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/4.7.0 - method: GET - uri: https://ps.pndsn.com/v3/history-with-actions/sub-key/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/channel/fetch-messages-actions-ch-1?include_meta=false&max=25 - response: - body: - string: !!binary | - H4sIAAAAAAAAA3yUzWrDMAyAX6X4vIB+bFnaq4wxQnHXsjaFJjuM0nefM3YYI9IxMp+lyJ90T/My - Lp9zet4RwNMu7Y/jNLXzGrinQ1v2x+HS5nl8b/Mw7pfTdZqHHsN+/nJPv0f9Ix3b12Al9SuW06Ut - 1482rWEUqAUNBFhEmCA9nvrN/0EJwILATLwN1gAUwaIeqAGooMWEtjNaAJoIoNomiAA+icgMVbe7 - g4ABSYodVCcnBWTmYkzVITkg17aqeTlzQNb+lJm3W4sQ+IOqVjJ4vQ0Eoq5eVec5EQKDaEUzedUG - ChEXysZebwOHqHQPkB0TMHCIpAiAOtVi4BApZCHeHjHEwCGy1QRx/hMDhxh7tZy9agOHmLFPhDj2 - YeAQ52rKmreNx8AhFqrZNR4Dh7gaIVd0cgYOsSnU7E02Bg5lzGy0zspr37ap3W7X29uflbvO50+w - b+jDeJ7b4xsAAP//AwCaX1X+CAYAAA== - headers: - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET, POST, DELETE, OPTIONS - Access-Control-Allow-Origin: - - '*' - Age: - - '0' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Wed, 09 Dec 2020 13:04:25 GMT - status: - code: 200 - message: OK -version: 1 diff --git a/tests/integrational/fixtures/native_sync/publish/publish_space_id.json b/tests/integrational/fixtures/native_sync/publish/publish_space_id.json new file mode 100644 index 00000000..be5648da --- /dev/null +++ b/tests/integrational/fixtures/native_sync/publish/publish_space_id.json @@ -0,0 +1,58 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/ch1/0/%22hi%22?seqn=1&space-id=sp1", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Thu, 16 Feb 2023 21:16:49 GMT" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "keep-alive" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16765822096711785\"]" + } + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/native_sync/publish/publish_user_message_type.json b/tests/integrational/fixtures/native_sync/publish/publish_user_message_type.json new file mode 100644 index 00000000..c5e8cd1b --- /dev/null +++ b/tests/integrational/fixtures/native_sync/publish/publish_user_message_type.json @@ -0,0 +1,58 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/publish/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/ch1/0/%22hi%22?seqn=1&type=test_message", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Thu, 16 Feb 2023 21:16:49 GMT" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "keep-alive" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16765822098672882\"]" + } + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/native_sync/signal/with_space_id.json b/tests/integrational/fixtures/native_sync/signal/with_space_id.json new file mode 100644 index 00000000..ee1a4c95 --- /dev/null +++ b/tests/integrational/fixtures/native_sync/signal/with_space_id.json @@ -0,0 +1,58 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/signal/demo/demo/0/ch1/0/null?space-id=sp1", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Date": [ + "Thu, 16 Feb 2023 21:14:55 GMT" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16765820950334052\"]" + } + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/native_sync/signal/with_user_message_type.json b/tests/integrational/fixtures/native_sync/signal/with_user_message_type.json new file mode 100644 index 00000000..6ffbc1f5 --- /dev/null +++ b/tests/integrational/fixtures/native_sync/signal/with_user_message_type.json @@ -0,0 +1,58 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/signal/demo/demo/0/ch1/0/null?type=test_signal", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.1.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Date": [ + "Thu, 16 Feb 2023 21:14:54 GMT" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16765820948668731\"]" + } + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/native_sync/test_fetch_messages.py b/tests/integrational/native_sync/test_fetch_messages.py index a279f37b..a4fe8912 100644 --- a/tests/integrational/native_sync/test_fetch_messages.py +++ b/tests/integrational/native_sync/test_fetch_messages.py @@ -3,7 +3,7 @@ from pubnub.models.consumer.history import PNFetchMessagesResult from pubnub.models.consumer.pubsub import PNPublishResult from pubnub.pubnub import PubNub -from tests.helper import pnconf_copy +from tests.helper import pnconf_env_copy from tests.integrational.vcr_helper import use_cassette_and_stub_time_sleep_native @@ -12,11 +12,11 @@ class TestFetchMessages: @use_cassette_and_stub_time_sleep_native( - 'tests/integrational/fixtures/native_sync/fetch_messages/max_100_single.yaml', + 'tests/integrational/fixtures/native_sync/fetch_messages/max_100_single.json', serializer='pn_json', filter_query_parameters=['uuid', 'pnsdk', 'l_pub']) def test_fetch_messages_return_max_100_for_single_channel(self): ch = "fetch-messages-ch-1" - pubnub = PubNub(pnconf_copy()) + pubnub = PubNub(pnconf_env_copy()) pubnub.config.uuid = "fetch-messages-uuid" for i in range(COUNT): @@ -36,12 +36,12 @@ def test_fetch_messages_return_max_100_for_single_channel(self): assert len(envelope.result.channels[ch]) == 100 @use_cassette_and_stub_time_sleep_native( - 'tests/integrational/fixtures/native_sync/fetch_messages/max_25_multiple.yaml', + 'tests/integrational/fixtures/native_sync/fetch_messages/max_25_multiple.json', serializer='pn_json', filter_query_parameters=['uuid', 'pnsdk', 'l_pub']) def test_fetch_messages_return_max_25_for_multiple_channels(self): ch1 = "fetch-messages-ch-1" ch2 = "fetch-messages-ch-2" - pubnub = PubNub(pnconf_copy()) + pubnub = PubNub(pnconf_env_copy()) pubnub.config.uuid = "fetch-messages-uuid" for i in range(COUNT): @@ -53,7 +53,6 @@ def test_fetch_messages_return_max_25_for_multiple_channels(self): assert envelope2.result.timetoken > 0 while True: - time.sleep(1) if len(pubnub.history().channel(ch1).count(COUNT).sync().result.messages) >= 100 and \ len(pubnub.history().channel(ch2).count(COUNT).sync().result.messages) >= 100: break @@ -65,11 +64,11 @@ def test_fetch_messages_return_max_25_for_multiple_channels(self): assert len(envelope.result.channels[ch2]) == 25 @use_cassette_and_stub_time_sleep_native( - 'tests/integrational/fixtures/native_sync/fetch_messages/max_25_with_actions.yaml', + 'tests/integrational/fixtures/native_sync/fetch_messages/max_25_with_actions.json', serializer='pn_json', filter_query_parameters=['uuid', 'pnsdk', 'l_pub']) def test_fetch_messages_actions_return_max_25(self): ch = "fetch-messages-actions-ch-1" - pubnub = PubNub(pnconf_copy()) + pubnub = PubNub(pnconf_env_copy()) pubnub.config.uuid = "fetch-messages-uuid" for i in range(COUNT): @@ -89,11 +88,11 @@ def test_fetch_messages_actions_return_max_25(self): assert len(envelope.result.channels[ch]) == 25 @use_cassette_and_stub_time_sleep_native( - 'tests/integrational/fixtures/native_sync/fetch_messages/include_meta.yaml', + 'tests/integrational/fixtures/native_sync/fetch_messages/include_meta.json', serializer='pn_json', filter_query_parameters=['uuid', 'pnsdk', 'l_pub']) def test_fetch_messages_actions_include_meta(self): - ch = "fetch-messages-actions-meta-1" - pubnub = PubNub(pnconf_copy()) + ch = "fetch-messages-actions-meta-2" + pubnub = PubNub(pnconf_env_copy()) pubnub.config.uuid = "fetch-messages-uuid" pubnub.publish().channel(ch).message("hey-meta").meta({"is-this": "krusty-krab"}).sync() @@ -109,11 +108,11 @@ def test_fetch_messages_actions_include_meta(self): assert history[1].meta == {'this-is': 'patrick'} @use_cassette_and_stub_time_sleep_native( - 'tests/integrational/fixtures/native_sync/fetch_messages/include_uuid.yaml', + 'tests/integrational/fixtures/native_sync/fetch_messages/include_uuid.json', serializer='pn_json', filter_query_parameters=['uuid', 'pnsdk', 'l_pub']) def test_fetch_messages_actions_include_uuid(self): ch = "fetch-messages-actions-uuid" - pubnub = PubNub(pnconf_copy()) + pubnub = PubNub(pnconf_env_copy()) uuid1 = "fetch-messages-uuid-1" uuid2 = "fetch-messages-uuid-2" @@ -132,20 +131,21 @@ def test_fetch_messages_actions_include_uuid(self): assert history[1].uuid == uuid2 @use_cassette_and_stub_time_sleep_native( - 'tests/integrational/fixtures/native_sync/fetch_messages/include_message_type.yaml', + 'tests/integrational/fixtures/native_sync/fetch_messages/include_message_type.json', serializer='pn_json', filter_query_parameters=['uuid', 'pnsdk', 'l_pub']) def test_fetch_messages_actions_include_message_type(self): - ch = "fetch-messages-types" - pubnub = PubNub(pnconf_copy()) + ch = "fetch-messages-message-type" + pubnub = PubNub(pnconf_env_copy()) pubnub.config.uuid = "fetch-message-types" pubnub.publish().channel(ch).message("hey-type").sync() time.sleep(1) + envelope = pubnub.fetch_messages().channels(ch).include_message_actions(True).include_message_type(True).sync() assert envelope is not None assert isinstance(envelope.result, PNFetchMessagesResult) history = envelope.result.channels[ch] assert len(history) == 1 - assert history[0].message_type == '1' + assert str(history[0].message_type) == '0' diff --git a/tests/integrational/native_sync/test_publish.py b/tests/integrational/native_sync/test_publish.py index 935ee02a..319ecde3 100644 --- a/tests/integrational/native_sync/test_publish.py +++ b/tests/integrational/native_sync/test_publish.py @@ -5,9 +5,10 @@ from pubnub.exceptions import PubNubException from pubnub.models.consumer.pubsub import PNPublishResult from pubnub.pubnub import PubNub -from tests.helper import pnconf, pnconf_demo_copy, pnconf_enc, pnconf_file_copy +from tests.helper import pnconf, pnconf_demo_copy, pnconf_enc, pnconf_file_copy, pnconf_env from tests.integrational.vcr_helper import pn_vcr from unittest.mock import patch +from urllib.parse import urlparse, parse_qs pubnub.set_stream_logger('pubnub', logging.DEBUG) @@ -371,3 +372,27 @@ def test_publish_ttl_100(self): assert env.result.timetoken > 1 except PubNubException as e: self.fail(e) + + def test_publish_user_message_type(self): + with pn_vcr.use_cassette('tests/integrational/fixtures/native_sync/publish/publish_user_message_type.json', + filter_query_parameters=['uuid', 'pnsdk'], serializer='pn_json') as cassette: + env = PubNub(pnconf_env).publish().channel("ch1").message("hi").message_type('test_message').sync() + assert isinstance(env.result, PNPublishResult) + assert env.result.timetoken > 1 + assert len(cassette) == 1 + uri = urlparse(cassette.requests[0].uri) + query = parse_qs(uri.query) + assert 'type' in query.keys() + assert query['type'] == ['test_message'] + + def test_publish_space_id(self): + with pn_vcr.use_cassette('tests/integrational/fixtures/native_sync/publish/publish_space_id.json', + filter_query_parameters=['uuid', 'pnsdk'], serializer='pn_json') as cassette: + env = PubNub(pnconf_env).publish().channel('ch1').space_id('sp1').message("hi").sync() + assert isinstance(env.result, PNPublishResult) + assert env.result.timetoken > 1 + assert len(cassette) == 1 + uri = urlparse(cassette.requests[0].uri) + query = parse_qs(uri.query) + assert 'space-id' in query.keys() + assert query['space-id'] == ['sp1'] diff --git a/tests/integrational/native_sync/test_signal.py b/tests/integrational/native_sync/test_signal.py index 210eef20..5386da62 100644 --- a/tests/integrational/native_sync/test_signal.py +++ b/tests/integrational/native_sync/test_signal.py @@ -4,6 +4,7 @@ from pubnub.structures import Envelope from tests.helper import pnconf_demo_copy from tests.integrational.vcr_helper import pn_vcr +from urllib.parse import urlparse, parse_qs @pn_vcr.use_cassette('tests/integrational/fixtures/native_sync/signal/single.yaml', @@ -18,3 +19,31 @@ def test_single_channel(): assert envelope.result.timetoken == '15640049765289377' assert isinstance(envelope.result, PNSignalResult) assert isinstance(envelope.status, PNStatus) + + +def test_signal_with_user_message_type(): + with pn_vcr.use_cassette('tests/integrational/fixtures/native_sync/signal/with_user_message_type.json', + filter_query_parameters=['uuid', 'pnsdk'], serializer='pn_json') as cassette: + envelope = PubNub(pnconf_demo_copy()).signal().channel("ch1").message_type('test_signal').sync() + assert isinstance(envelope, Envelope) + assert not envelope.status.is_error() + assert int(envelope.result.timetoken) > 0 + assert len(cassette) == 1 + uri = urlparse(cassette.requests[0].uri) + query = parse_qs(uri.query) + assert 'type' in query.keys() + assert query['type'] == ['test_signal'] + + +def test_signal_with_space_id(): + with pn_vcr.use_cassette('tests/integrational/fixtures/native_sync/signal/with_space_id.json', + filter_query_parameters=['uuid', 'pnsdk'], serializer='pn_json') as cassette: + envelope = PubNub(pnconf_demo_copy()).signal().channel('ch1').space_id('sp1').sync() + + assert isinstance(envelope, Envelope) + assert int(envelope.result.timetoken) > 1 + assert len(cassette) == 1 + uri = urlparse(cassette.requests[0].uri) + query = parse_qs(uri.query) + assert 'space-id' in query.keys() + assert query['space-id'] == ['sp1']