From 8c3cb75c476d3372b567b99ac02cfb80c0d9c21d Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Fri, 20 Jan 2023 14:50:22 +0100 Subject: [PATCH 01/15] Add message_type and space_id to publish --- pubnub/endpoints/pubsub/publish.py | 16 +++++++++ pubnub/models/consumer/message_type.py | 21 +++++++++++ .../native_sync/publish/publish_space_id.yaml | 36 +++++++++++++++++++ .../publish/publish_user_message_type.yaml | 36 +++++++++++++++++++ .../integrational/native_sync/test_publish.py | 34 ++++++++++++++++++ 5 files changed, 143 insertions(+) create mode 100644 pubnub/models/consumer/message_type.py create mode 100644 tests/integrational/fixtures/native_sync/publish/publish_space_id.yaml create mode 100644 tests/integrational/fixtures/native_sync/publish/publish_user_message_type.yaml diff --git a/pubnub/endpoints/pubsub/publish.py b/pubnub/endpoints/pubsub/publish.py index 8fe15ad2..646ee58f 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 = 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(self, space): + self._space = str(space) + return self + def message(self, message): self._message = message return self + def message_type(self, message_type): + 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'] = str(self._message_type) + + if self._space is not None: + params['space-id'] = str(self._space) + return params def build_path(self): diff --git a/pubnub/models/consumer/message_type.py b/pubnub/models/consumer/message_type.py new file mode 100644 index 00000000..d7383c15 --- /dev/null +++ b/pubnub/models/consumer/message_type.py @@ -0,0 +1,21 @@ +class PNMessageType: + _internal_type: str = 0 + _user_type: str = None + + def __init__(self, user_type: str = None) -> None: + self._user_type = user_type + + def set_internal_type(self, internal_type: str): + self._internal_type = internal_type + + def from_response(user_type: str = None, internal_type: str = None): + message_type = PNMessageType(user_type) + if internal_type is not None: + message_type.set_internal_type(internal_type) + return message_type + + def __str__(self) -> str: + return self._user_type if self._user_type is not None else str(self._internal_type) + + def toJSON(self) -> str: + return str(self) diff --git a/tests/integrational/fixtures/native_sync/publish/publish_space_id.yaml b/tests/integrational/fixtures/native_sync/publish/publish_space_id.yaml new file mode 100644 index 00000000..806dbd14 --- /dev/null +++ b/tests/integrational/fixtures/native_sync/publish/publish_space_id.yaml @@ -0,0 +1,36 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - PubNub-Python/7.1.0 + method: GET + uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/ch1/0/%22hi%22?seqn=1&space-id=sp1 + response: + body: + string: '[1,"Sent","16742188428215060"]' + headers: + Access-Control-Allow-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, 20 Jan 2023 12:47:22 GMT + status: + code: 200 + message: OK +version: 1 diff --git a/tests/integrational/fixtures/native_sync/publish/publish_user_message_type.yaml b/tests/integrational/fixtures/native_sync/publish/publish_user_message_type.yaml new file mode 100644 index 00000000..65bf171e --- /dev/null +++ b/tests/integrational/fixtures/native_sync/publish/publish_user_message_type.yaml @@ -0,0 +1,36 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - PubNub-Python/7.1.0 + method: GET + uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/ch1/0/%22hi%22?seqn=1&type=test_message + response: + body: + string: '[1,"Sent","16742222446704312"]' + headers: + Access-Control-Allow-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, 20 Jan 2023 13:44:04 GMT + status: + code: 200 + message: OK +version: 1 diff --git a/tests/integrational/native_sync/test_publish.py b/tests/integrational/native_sync/test_publish.py index 935ee02a..8658b285 100644 --- a/tests/integrational/native_sync/test_publish.py +++ b/tests/integrational/native_sync/test_publish.py @@ -8,6 +8,7 @@ from tests.helper import pnconf, pnconf_demo_copy, pnconf_enc, pnconf_file_copy 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,36 @@ def test_publish_ttl_100(self): assert env.result.timetoken > 1 except PubNubException as e: self.fail(e) + + @pn_vcr.use_cassette('tests/integrational/fixtures/native_sync/publish/publish_user_message_type.yaml', + filter_query_parameters=['uuid', 'pnsdk']) + def test_publish_user_message_type(self): + with pn_vcr.use_cassette('tests/integrational/fixtures/native_sync/publish/publish_user_message_type.yaml', + filter_query_parameters=['uuid', 'pnsdk']) as cassette: + try: + env = PubNub(pnconf).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'] + except PubNubException as e: + self.fail(e) + + def test_publish_space_id(self): + with pn_vcr.use_cassette('tests/integrational/fixtures/native_sync/publish/publish_space_id.yaml', + filter_query_parameters=['uuid', 'pnsdk']) as cassette: + try: + env = PubNub(pnconf).publish().channel('ch1').space('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'] + except PubNubException as e: + self.fail(e) From 131c173ac9bcb7470a4caae9c774598ef2406a1f Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Fri, 20 Jan 2023 15:47:41 +0100 Subject: [PATCH 02/15] MessageType and SpaceId for Signal endpoint --- pubnub/endpoints/signal.py | 20 ++++++++++- .../native_sync/signal/with_space_id.yaml | 36 +++++++++++++++++++ .../signal/with_user_message_type.yaml | 36 +++++++++++++++++++ .../integrational/native_sync/test_publish.py | 2 -- .../integrational/native_sync/test_signal.py | 29 +++++++++++++++ 5 files changed, 120 insertions(+), 3 deletions(-) create mode 100644 tests/integrational/fixtures/native_sync/signal/with_space_id.yaml create mode 100644 tests/integrational/fixtures/native_sync/signal/with_user_message_type.yaml diff --git a/pubnub/endpoints/signal.py b/pubnub/endpoints/signal.py index feb7ea35..387de007 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 = 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(self, space): + self._space = str(space) + return self + + def message_type(self, message_type): + 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'] = str(self._message_type) + + if self._space is not None: + params['space-id'] = str(self._space) + + return params def http_method(self): return HttpMethod.GET diff --git a/tests/integrational/fixtures/native_sync/signal/with_space_id.yaml b/tests/integrational/fixtures/native_sync/signal/with_space_id.yaml new file mode 100644 index 00000000..7eb9d3df --- /dev/null +++ b/tests/integrational/fixtures/native_sync/signal/with_space_id.yaml @@ -0,0 +1,36 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - PubNub-Python/7.1.0 + method: GET + uri: https://ps.pndsn.com/signal/demo/demo/0/ch1/0/null?space-id=sp1 + response: + body: + string: '[1,"Sent","16742259451827459"]' + headers: + Access-Control-Allow-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, 20 Jan 2023 14:45:45 GMT + status: + code: 200 + message: OK +version: 1 diff --git a/tests/integrational/fixtures/native_sync/signal/with_user_message_type.yaml b/tests/integrational/fixtures/native_sync/signal/with_user_message_type.yaml new file mode 100644 index 00000000..e75422f6 --- /dev/null +++ b/tests/integrational/fixtures/native_sync/signal/with_user_message_type.yaml @@ -0,0 +1,36 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - PubNub-Python/7.1.0 + method: GET + uri: https://ps.pndsn.com/signal/demo/demo/0/ch1/0/null?type=test_signal + response: + body: + string: '[1,"Sent","16742259449318974"]' + headers: + Access-Control-Allow-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, 20 Jan 2023 14:45:44 GMT + status: + code: 200 + message: OK +version: 1 diff --git a/tests/integrational/native_sync/test_publish.py b/tests/integrational/native_sync/test_publish.py index 8658b285..067080c9 100644 --- a/tests/integrational/native_sync/test_publish.py +++ b/tests/integrational/native_sync/test_publish.py @@ -373,8 +373,6 @@ def test_publish_ttl_100(self): except PubNubException as e: self.fail(e) - @pn_vcr.use_cassette('tests/integrational/fixtures/native_sync/publish/publish_user_message_type.yaml', - filter_query_parameters=['uuid', 'pnsdk']) def test_publish_user_message_type(self): with pn_vcr.use_cassette('tests/integrational/fixtures/native_sync/publish/publish_user_message_type.yaml', filter_query_parameters=['uuid', 'pnsdk']) as cassette: diff --git a/tests/integrational/native_sync/test_signal.py b/tests/integrational/native_sync/test_signal.py index 210eef20..e7192d57 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.yaml', + filter_query_parameters=['uuid', 'pnsdk']) 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.yaml', + filter_query_parameters=['uuid', 'pnsdk']) as cassette: + envelope = PubNub(pnconf_demo_copy()).signal().channel('ch1').space('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'] From f2216476e01fbb16e4698bdb1ffff79d4715cf3c Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Mon, 23 Jan 2023 17:16:20 +0100 Subject: [PATCH 03/15] Remove try/excpet from tests --- .../integrational/native_sync/test_publish.py | 39 ++++++++----------- 1 file changed, 16 insertions(+), 23 deletions(-) diff --git a/tests/integrational/native_sync/test_publish.py b/tests/integrational/native_sync/test_publish.py index 067080c9..d430ab07 100644 --- a/tests/integrational/native_sync/test_publish.py +++ b/tests/integrational/native_sync/test_publish.py @@ -376,30 +376,23 @@ def test_publish_ttl_100(self): def test_publish_user_message_type(self): with pn_vcr.use_cassette('tests/integrational/fixtures/native_sync/publish/publish_user_message_type.yaml', filter_query_parameters=['uuid', 'pnsdk']) as cassette: - try: - env = PubNub(pnconf).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'] - except PubNubException as e: - self.fail(e) + env = PubNub(pnconf).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.yaml', filter_query_parameters=['uuid', 'pnsdk']) as cassette: - try: - env = PubNub(pnconf).publish().channel('ch1').space('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'] - except PubNubException as e: - self.fail(e) + env = PubNub(pnconf).publish().channel('ch1').space('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'] From 0a49f60290b914b011cf953822d478fdb085d38f Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Tue, 24 Jan 2023 19:18:33 +0100 Subject: [PATCH 04/15] Add space and message_type to Subscribe Message + tests --- pubnub/endpoints/pubsub/publish.py | 10 +- pubnub/models/consumer/pubsub.py | 6 +- pubnub/models/server/subscribe.py | 15 +++ pubnub/workers.py | 4 +- tests/integrational/asyncio/test_subscribe.py | 117 ++++++++++++++++++ .../subscription/publish_message_type.yaml | 91 ++++++++++++++ .../subscription/publish_space_id.yaml | 91 ++++++++++++++ 7 files changed, 326 insertions(+), 8 deletions(-) create mode 100644 tests/integrational/fixtures/asyncio/subscription/publish_message_type.yaml create mode 100644 tests/integrational/fixtures/asyncio/subscription/publish_space_id.yaml diff --git a/pubnub/endpoints/pubsub/publish.py b/pubnub/endpoints/pubsub/publish.py index 646ee58f..0cfc1f3f 100644 --- a/pubnub/endpoints/pubsub/publish.py +++ b/pubnub/endpoints/pubsub/publish.py @@ -15,7 +15,7 @@ class Publish(Endpoint, TimeTokenOverrideMixin): def __init__(self, pubnub): super(Publish, self).__init__(pubnub) self._channel = None - self._space = None + self._space_id = None self._message = None self._message_type = None self._should_store = None @@ -29,8 +29,8 @@ def channel(self, channel): self._channel = str(channel) return self - def space(self, space): - self._space = str(space) + def space_id(self, space_id): + self._space_id = str(space_id) return self def message(self, message): @@ -104,8 +104,8 @@ def custom_params(self): if self._message_type is not None: params['type'] = str(self._message_type) - if self._space is not None: - params['space-id'] = str(self._space) + if self._space_id is not None: + params['space-id'] = str(self._space_id) return params diff --git a/pubnub/models/consumer/pubsub.py b/pubnub/models/consumer/pubsub.py index a44070af..1e5d47d1 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, + space_id=None): if subscription is not None: assert isinstance(subscription, str) @@ -29,6 +29,8 @@ def __init__(self, message, subscription, channel, timetoken, user_metadata=None self.timetoken = timetoken self.user_metadata = user_metadata self.publisher = publisher + self.type = message_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..dc594596 100644 --- a/pubnub/models/server/subscribe.py +++ b/pubnub/models/server/subscribe.py @@ -1,3 +1,6 @@ +from pubnub.models.consumer.message_type import PNMessageType + + class SubscribeEnvelope: def __init__(self, messages=None, metadata=None): assert isinstance(messages, (list, None)) @@ -30,6 +33,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 +54,16 @@ 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'] + + if 'mt' in json_input: + if 'e' in json_input: + message.message_type = PNMessageType.from_response(json_input['mt'], json_input['e']) + else: + message.message_type = PNMessageType(json_input['mt']) + return message diff --git a/pubnub/workers.py b/pubnub/workers.py index 2eb2de6d..d2bfdc1c 100644 --- a/pubnub/workers.py +++ b/pubnub/workers.py @@ -172,6 +172,8 @@ 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, + space_id=message.space_id ) self._listener_manager.announce_message(pn_message_result) diff --git a/tests/integrational/asyncio/test_subscribe.py b/tests/integrational/asyncio/test_subscribe.py index 272917b7..9d6a78b4 100644 --- a/tests/integrational/asyncio/test_subscribe.py +++ b/tests/integrational/asyncio/test_subscribe.py @@ -5,6 +5,7 @@ from unittest.mock import patch from pubnub.models.consumer.pubsub import PNMessageResult +from pubnub.models.consumer.message_type import PNMessageType from pubnub.pubnub_asyncio import PubNubAsyncio, AsyncioEnvelope, SubscribeListener from tests.helper import pnconf_sub_copy, pnconf_enc_sub_copy from tests.integrational.vcr_asyncio_sleeper import get_sleeper, VCR599Listener, VCR599ReconnectionManager @@ -382,3 +383,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.yaml') +@pn_vcr.use_cassette( + 'tests/integrational/fixtures/asyncio/subscription/publish_space_id.yaml', + 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_sub_copy(), custom_event_loop=event_loop) + pubnub_pub = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) + + patch_pubnub(pubnub_sub) + 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() + + pubnub_pub.stop() + pubnub_sub.stop() + + +@get_sleeper('tests/integrational/fixtures/asyncio/subscription/publish_message_type.yaml') +@pn_vcr.use_cassette( + 'tests/integrational/fixtures/asyncio/subscription/publish_message_type.yaml', + 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_sub_copy(), custom_event_loop=event_loop) + pubnub_pub = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) + + patch_pubnub(pubnub_sub) + 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, PNMessageType) + 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() + + pubnub_pub.stop() + pubnub_sub.stop() diff --git a/tests/integrational/fixtures/asyncio/subscription/publish_message_type.yaml b/tests/integrational/fixtures/asyncio/subscription/publish_message_type.yaml new file mode 100644 index 00000000..3b19950c --- /dev/null +++ b/tests/integrational/fixtures/asyncio/subscription/publish_message_type.yaml @@ -0,0 +1,91 @@ +interactions: +- request: + body: null + headers: + User-Agent: + - PubNub-Python-Asyncio/7.1.0 + 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":"16745835146497675","r":43},"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: + - Tue, 24 Jan 2023 18:09:50 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%2F7.1.0&uuid=test-subscribe-asyncio-uuid-sub +- request: + body: null + headers: + User-Agent: + - PubNub-Python-Asyncio/7.1.0 + 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&type=MyOwnCustomMessageType&uuid=test-subscribe-asyncio-uuid-pub + response: + body: + string: '[1,"Sent","16745837903154482"]' + headers: + Access-Control-Allow-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, 24 Jan 2023 18:09:50 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?type=MyOwnCustomMessageType&seqn=1&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-pub +- request: + body: null + headers: + User-Agent: + - PubNub-Python-Asyncio/7.1.0 + method: GET + uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-ch/0?tr=43&tt=16745835146497675&uuid=test-subscribe-asyncio-uuid-sub + response: + body: + string: '{"t":{"t":"16745837903154482","r":43},"m":[{"a":"2","f":0,"i":"test-subscribe-asyncio-uuid-pub","s":1,"p":{"t":"16745837903154482","r":43},"k":"sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe","c":"test-subscribe-asyncio-ch","d":"hey","mt":"MyOwnCustomMessageType"}]}' + headers: + Access-Control-Allow-Methods: + - GET + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - text/javascript; charset="UTF-8" + Date: + - Tue, 24 Jan 2023 18:09:50 GMT + Transfer-Encoding: + - chunked + 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=16745835146497675&tr=43&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-sub +version: 1 diff --git a/tests/integrational/fixtures/asyncio/subscription/publish_space_id.yaml b/tests/integrational/fixtures/asyncio/subscription/publish_space_id.yaml new file mode 100644 index 00000000..2fe70b07 --- /dev/null +++ b/tests/integrational/fixtures/asyncio/subscription/publish_space_id.yaml @@ -0,0 +1,91 @@ +interactions: +- request: + body: null + headers: + User-Agent: + - PubNub-Python-Asyncio/7.1.0 + 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":"16745831073446314","r":42},"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: + - Tue, 24 Jan 2023 17:59:09 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%2F7.1.0&uuid=test-subscribe-asyncio-uuid-sub +- request: + body: null + headers: + User-Agent: + - PubNub-Python-Asyncio/7.1.0 + 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&space-id=HelloSpace&uuid=test-subscribe-asyncio-uuid-pub + response: + body: + string: '[1,"Sent","16745831495141130"]' + headers: + Access-Control-Allow-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, 24 Jan 2023 17:59:09 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?space-id=HelloSpace&seqn=1&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-pub +- request: + body: null + headers: + User-Agent: + - PubNub-Python-Asyncio/7.1.0 + method: GET + uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-ch/0?tr=42&tt=16745831073446314&uuid=test-subscribe-asyncio-uuid-sub + response: + body: + string: '{"t":{"t":"16745831495141130","r":42},"m":[{"a":"2","f":0,"i":"test-subscribe-asyncio-uuid-pub","s":1,"p":{"t":"16745831495141130","r":42},"k":"sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe","c":"test-subscribe-asyncio-ch","d":"hey","si":"HelloSpace"}]}' + headers: + Access-Control-Allow-Methods: + - GET + Access-Control-Allow-Origin: + - '*' + Cache-Control: + - no-cache + Connection: + - keep-alive + Content-Encoding: + - gzip + Content-Type: + - text/javascript; charset="UTF-8" + Date: + - Tue, 24 Jan 2023 17:59:09 GMT + Transfer-Encoding: + - chunked + 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=16745831073446314&tr=42&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-sub +version: 1 From 1109fad1569ea796723d9f0dfa913baba07a8b6f Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Thu, 9 Feb 2023 11:26:07 +0100 Subject: [PATCH 05/15] Tests --- pubnub/endpoints/fetch_messages.py | 17 +- pubnub/endpoints/pubsub/publish.py | 4 +- pubnub/endpoints/signal.py | 6 +- tests/functional/test_publish.py | 54 +- tests/functional/test_signal.py | 77 +- tests/helper.py | 4 +- tests/integrational/asyncio/test_subscribe.py | 17 +- .../fetch_messages/include_message_type.yaml | 78 - .../fetch_messages/include_meta.json | 173 + .../fetch_messages/include_meta.yaml | 113 - .../fetch_messages/include_uuid.json | 173 + .../fetch_messages/include_uuid.yaml | 113 - .../fetch_messages/max_100_single.json | 6489 ++++++++ .../fetch_messages/max_100_single.yaml | 4182 ----- .../fetch_messages/max_25_multiple.json | 12911 ++++++++++++++++ .../fetch_messages/max_25_multiple.yaml | 8297 ---------- .../fetch_messages/max_25_with_actions.json | 6489 ++++++++ .../fetch_messages/max_25_with_actions.yaml | 4170 ----- .../fixtures/native_sync/signal/single.json | 58 + .../fixtures/native_sync/signal/uuid.json | 111 + .../native_sync/test_fetch_messages.py | 33 +- .../integrational/native_sync/test_publish.py | 2 +- .../integrational/native_sync/test_signal.py | 2 +- 23 files changed, 26581 insertions(+), 16992 deletions(-) delete mode 100644 tests/integrational/fixtures/native_sync/fetch_messages/include_message_type.yaml create mode 100644 tests/integrational/fixtures/native_sync/fetch_messages/include_meta.json delete mode 100644 tests/integrational/fixtures/native_sync/fetch_messages/include_meta.yaml create mode 100644 tests/integrational/fixtures/native_sync/fetch_messages/include_uuid.json delete mode 100644 tests/integrational/fixtures/native_sync/fetch_messages/include_uuid.yaml create mode 100644 tests/integrational/fixtures/native_sync/fetch_messages/max_100_single.json delete mode 100644 tests/integrational/fixtures/native_sync/fetch_messages/max_100_single.yaml create mode 100644 tests/integrational/fixtures/native_sync/fetch_messages/max_25_multiple.json delete mode 100644 tests/integrational/fixtures/native_sync/fetch_messages/max_25_multiple.yaml create mode 100644 tests/integrational/fixtures/native_sync/fetch_messages/max_25_with_actions.json delete mode 100644 tests/integrational/fixtures/native_sync/fetch_messages/max_25_with_actions.yaml create mode 100644 tests/integrational/fixtures/native_sync/signal/single.json create mode 100644 tests/integrational/fixtures/native_sync/signal/uuid.json diff --git a/pubnub/endpoints/fetch_messages.py b/pubnub/endpoints/fetch_messages.py index 14773a4b..f198712c 100644 --- a/pubnub/endpoints/fetch_messages.py +++ b/pubnub/endpoints/fetch_messages.py @@ -31,7 +31,8 @@ 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_space_id = None self._include_uuid = None def channels(self, channels): @@ -76,8 +77,16 @@ def include_uuid(self, include_uuid): 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_message_type': "true" if self._include_message_type else "false", + } if self._start is not None: params['start'] = str(self._start) @@ -88,8 +97,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" diff --git a/pubnub/endpoints/pubsub/publish.py b/pubnub/endpoints/pubsub/publish.py index 0cfc1f3f..73946fcd 100644 --- a/pubnub/endpoints/pubsub/publish.py +++ b/pubnub/endpoints/pubsub/publish.py @@ -5,6 +5,8 @@ from pubnub.models.consumer.pubsub import PNPublishResult from pubnub.enums import HttpMethod, PNOperationType from pubnub.endpoints.mixins import TimeTokenOverrideMixin +from pubnub.models.consumer.message_type import PNMessageType +from typing import Union class Publish(Endpoint, TimeTokenOverrideMixin): @@ -37,7 +39,7 @@ def message(self, message): self._message = message return self - def message_type(self, message_type): + def message_type(self, message_type: Union[PNMessageType, str]): self._message_type = message_type return self diff --git a/pubnub/endpoints/signal.py b/pubnub/endpoints/signal.py index 387de007..d2c92b2a 100644 --- a/pubnub/endpoints/signal.py +++ b/pubnub/endpoints/signal.py @@ -2,6 +2,8 @@ from pubnub.endpoints.endpoint import Endpoint from pubnub.enums import HttpMethod, PNOperationType from pubnub.models.consumer.signal import PNSignalResult +from pubnub.models.consumer.message_type import PNMessageType +from typing import Union class Signal(Endpoint): @@ -22,11 +24,11 @@ def message(self, message): self._message = message return self - def space(self, space): + def space_id(self, space): self._space = str(space) return self - def message_type(self, message_type): + def message_type(self, message_type: Union[PNMessageType, str]): self._message_type = message_type return self diff --git a/tests/functional/test_publish.py b/tests/functional/test_publish.py index 70da240d..3d9940aa 100644 --- a/tests/functional/test_publish.py +++ b/tests/functional/test_publish.py @@ -2,12 +2,12 @@ import unittest -from unittest.mock import MagicMock - from pubnub.endpoints.pubsub.publish import Publish +from pubnub.managers import TelemetryManager +from pubnub.models.consumer.message_type import PNMessageType 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 +93,54 @@ 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_pn_message_type(self): + message = "hi" + message_type = 'test_type' + encoded_message = url_encode(message) + + self.pub.channel("ch1").message(message).message_type(PNMessageType(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_with_str_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..27c3951a 100644 --- a/tests/functional/test_signal.py +++ b/tests/functional/test_signal.py @@ -1,9 +1,14 @@ 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.models.consumer.message_type import PNMessageType +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 +33,73 @@ 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_pn_message_type(self): + message = "hi" + message_type = 'test_type' + encoded_message = url_encode(message) + + self.signal.channel("ch1").message(message).message_type(PNMessageType(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, + }) + + def test_signal_with_str_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 9d6a78b4..ff65e8d2 100644 --- a/tests/integrational/asyncio/test_subscribe.py +++ b/tests/integrational/asyncio/test_subscribe.py @@ -11,6 +11,7 @@ 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) @@ -396,8 +397,8 @@ async def test_subscribe_publish_space_id(event_loop, sleeper=asyncio.sleep): pubnub_sub = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) pubnub_pub = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) - patch_pubnub(pubnub_sub) - patch_pubnub(pubnub_pub) + 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' @@ -438,8 +439,8 @@ async def test_subscribe_publish_space_id(event_loop, sleeper=asyncio.sleep): pubnub_sub.unsubscribe().channels(channel).execute() # await callback.wait_for_disconnect() - pubnub_pub.stop() - pubnub_sub.stop() + await pubnub_pub.stop() + await pubnub_sub.stop() @get_sleeper('tests/integrational/fixtures/asyncio/subscription/publish_message_type.yaml') @@ -453,8 +454,8 @@ async def test_subscribe_publish_message_type(event_loop, sleeper=asyncio.sleep) pubnub_sub = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) pubnub_pub = PubNubAsyncio(pnconf_sub_copy(), custom_event_loop=event_loop) - patch_pubnub(pubnub_sub) - patch_pubnub(pubnub_pub) + 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' @@ -497,5 +498,5 @@ async def test_subscribe_publish_message_type(event_loop, sleeper=asyncio.sleep) pubnub_sub.unsubscribe().channels(channel).execute() # await callback.wait_for_disconnect() - pubnub_pub.stop() - pubnub_sub.stop() + await pubnub_pub.stop() + await pubnub_sub.stop() 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..b229352a --- /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": { + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Feb 2023 13:36:58 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757770188780189\"]" + } + } + }, + { + "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": { + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Feb 2023 13:36:58 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Origin": [ + "*" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757770189120588\"]" + } + } + }, + { + "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&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": { + "Connection": [ + "keep-alive" + ], + "Content-Encoding": [ + "gzip" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Credentials": [ + "true" + ], + "Date": [ + "Tue, 07 Feb 2023 13:37:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Age": [ + "0" + ], + "Transfer-Encoding": [ + "chunked" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAA5SOwQqDQAxEf0VydkEFu2t/pRRJJa2LdpVNPIj4783aHnpsL4HMTPJmAxaUheGcVUWRZ9D1GAKNSdjgTtL15knM+CA22ImfAqsgaCpNXDb4mLpAT+thgb4Rr6FpoJCM8mRra21ROmedziYlPoetrDNpKCzjeKiCum3g2UjvUw0Y4sKymiHiDfY9V/M/aFNWRe3cD9BENG/ojBJ9NyjwqkigGKfYfnHTt0PUhnccmfYXAAAA//8DAJSWFOFLAQAA" + } + } + } + ] +} \ 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..cc624c8b --- /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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:10 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603503822599\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:10 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603504156501\"]" + } + } + }, + { + "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_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" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Access-Control-Allow-Credentials": [ + "true" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:11 GMT" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Content-Encoding": [ + "gzip" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAA5SOwQqDMBBEf0X2bCDGRmt/pRQJdq3SGMVNDiL+ezfioZRS6HFnZufNCuSNDwSXREmZJtB0xjm0UVihRd90YkAi80ASpvH96EiE0N/Zv65wWHxAh8tuiAy4xvcD+vGJLlpZUeqykLmW+VkpXVUxcbzWfpmQQy5Yy+pR/UmOMhdvKY/6xlQ/mKdMF1ruq/5nKthuTAWc53Gu39ARuIu8vTWWcHsBAAD//wMAkkFIDEsBAAA=" + } + } + } + ] +} \ 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..256297cb --- /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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:04 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602244713960\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:04 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602245103086\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:04 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602245526918\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:04 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602245885616\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:04 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602246268024\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:04 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602246647010\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:04 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602247032440\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:04 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602247421345\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:04 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602247804192\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:04 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602248183562\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:04 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602248569417\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:04 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602248944444\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:04 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602249349249\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:04 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602249733784\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602250129446\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602250497787\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602250869217\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602251282653\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602251677823\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602252057298\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602252443280\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602252854323\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602253305357\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602253701152\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602254163160\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602254633210\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602255027640\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602255471249\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602255896532\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602256397054\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602256802331\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602257207582\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602257661355\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602258066613\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602258510330\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602258932983\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602259362547\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:05 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602259778548\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602260222755\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602260623768\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602261032200\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602261434421\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602261864893\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602262296320\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602262698601\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602263103168\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602263524309\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602263966645\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602264389663\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602264819469\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602265236028\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602265663435\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602266083630\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602266487285\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602266919129\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602267347114\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602267799358\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602268204471\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602268774930\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602269206719\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:06 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602269623615\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602270039289\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602270459028\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602270893929\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602271320457\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602271772497\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602272181062\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602272581029\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602273006641\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602273449208\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602273887401\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602274332503\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602274750797\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602275156302\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602275586734\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602276022603\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602276448859\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602276891146\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602277318899\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602277767337\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602278181158\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602278608243\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602279062390\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602279499368\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:07 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602279952203\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602280395048\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602280838629\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602281262256\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602281686623\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602282143066\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602282574773\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602283039113\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602283500515\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602283961667\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602284418440\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602284879280\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602285303959\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602285723406\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602286177524\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602286631633\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602287097820\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602287553389\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602288026828\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602288513674\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602288942486\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602289359145\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:08 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602289818826\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602290291137\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602290739349\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602291201014\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602291654210\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602292136335\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602292620727\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602293105271\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602293596162\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602294067987\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602294541800\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602295028741\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602297601261\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:09 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ], + "Access-Control-Allow-Methods": [ + "GET" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757602298100023\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:10 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Server": [ + "Pubnub Storage" + ], + "Content-Encoding": [ + "gzip" + ], + "Cache-Control": [ + "no-cache" + ], + "Age": [ + "0" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAA0TPS0oEQBAE0bvMeoTKrv9ZBpeCV/D2ChrtLqnFC+r1enx+fL0dezx/hxiH4YxgJKMYzRjG/g1HdmRHdmRHdmRHdmRHduRADuRADuRADuRADuRADuRETuRETuRETuRETuRETuRCLuRCLuRCLuRCLuRCLuRGbuRGbuRGbuRGbuRGbuRBHuRBHuRBHuRBHuRBHuRFXuRFXuRFXuRFXuRFXmQZtAxbBi5Dl8HL8GUEZBRkJGS3odvQbeg2dBu6Dd2GbkO3odvQPt6fqs4uOydPhJ+x/8vOz4N2/P0bAAD//wMAy0SMBL8DAAA=" + } + } + }, + { + "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&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": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Date": [ + "Tue, 07 Feb 2023 08:57:10 GMT" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Server": [ + "Pubnub Storage" + ], + "Content-Encoding": [ + "gzip" + ], + "Cache-Control": [ + "no-cache" + ], + "Age": [ + "0" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAA4yZyW5UMRBFfwW9dSK5bNfg/ApCKEIPgggBpZsFivLvXJthg0u6i0jppPu+ctWpyf1yXK731x+X4+5NLeXmzXE+P397xquP94+X8+/r91/Py+X+04m/Hwf++OHh/unpfJyfejk+ntcPD7d/3nG5xe9y3L19Of595ng4f97Wctwc189fz+u3L+fTcXeIubqVWrX23mrM///5yPvrz+941tOPx8fXm/+EJBcKhVJjhWoq1FrRps4KzSfuj9a8iOh8EHW0ngp1sSZG+0hzIWutCi1kqZCW6tZpoenMvY+0u9Q+8H/KR5ELxTBttLPnE/cWWRtedAaDsahNHyRCUWprE1hKKCfba3EN9mjLB3uL3EyaTjwoi3Kyo9iUYoVyskOlIN9YoZzsGK2OoC3KyR7NKqBkLcrJHu6oSBNYytkp2bNKVuejlpJtxWpzYy1a2b3lyBCzioZBHq2nZJv01ntlU6SnNdskrAMB1qKUbKt1WFvtiolaT8m2aiOs0EdLyUblLyj+dNRSsq2h17Yy8aCOlpKNAons72wZWSmw56g3FG2jozZNT4RCRjf2aDrJ3Qtpbcg31tk6w5sI4Vy9sT5aQ8JeyEo0oyuk5mQjQbwGbVFOtg0ZUmln52R7Q/MXttNqTrb7GE3pqOVkRy0dNpEpsp64j1q498FHbTpzLzRqMRfW2WtGTIRQ/E3Y8Nv0wVbIS2mjBm1RWrO9dB18rq0ykViEyj9oIC0l2wWVv9OTv6Vku7hjqGWHCEvJ9iohaNskkJaS7VUhxPto5tLe2a1g9lstnekiqyYnQr0DbjZpveQWRXinO+3K7r1FHcuRFrYdeU52dy1Oh9/Tmu0qitrPht9zslXDUG5Jjjwne06jxvsoJ9t6j1C2jHhOtsVAE5kPYoD0nGxvEjFoi+Yb9xy5w9eNzf5197EXCmS/0H0tJLUIk2hg+CN9tFbNvUVj7hBj5iLj7LWPJUIdLZueaiMnewzFLkIfLSU70Na00PtapGQHBrYwutRGSnZIxTqyxh7K2SnZgfXBEDc2ainZUbGwofyTQouTbfijqndfhY852kjJjoawCX0TMdKaHU1LQbllj5bW7MB2JLY6MXW0lOzoXfDD5trIycbgj4mNFsrJ1ultumavBrgPv3ptvdAc5WQbJi2stWzUcrKxruGSlU0RWZcf+7N5GY49gjRJ1uCSKKk2bMi0Ug43biIt6LUWFw545t4mXNg1W4MGQ7eUHO8YvfZVRjmlnG/sfkPo+wjM0+npBjpuVJZLKWntxmIzyxI7A8iag7ceH8XbaPQNuawLnr2S1ALc2GSR9T1BomSKazuacUnr96jAqdH3JCIp4wPNsnilPb56xv50uHHTSt8C/L7BSJR0NgN2fsesl5E5UC19rFmByhZJGR9d0Vfoy1uRnHF8CYTNa8aWsykt4wNfBWLY4ZVmTdx7HFtuwdcue5vevb7+AgAA//8DALDlww/zHAAA" + } + } + } + ] +} \ 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..8248e1f3 --- /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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:50 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603305237175\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:50 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603305584958\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:50 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603305955334\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:50 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603306306611\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:50 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603306663296\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:50 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603307030190\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:50 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603307397943\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:50 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603307770307\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:50 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603308138181\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:50 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603308516011\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:50 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603308898612\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:50 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603309270340\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:50 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603309652872\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603310041821\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603310458181\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603310828399\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603311201283\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603311577435\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603311970913\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603312341438\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603312709683\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603313081464\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603313460419\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603313846387\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603314223295\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603314608675\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603314986103\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603315355821\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603315735846\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603316106082\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603316503980\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603316905898\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603317273427\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:51 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603317668314\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603320047697\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603320455077\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603320840284\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603321218226\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603321624547\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603321994012\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603322377305\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603322782334\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603323260961\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603323661549\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603324054467\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603324439577\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603324815261\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603325198591\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603325638059\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603326037232\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603326448280\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603326858011\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603327251158\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603327656250\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603328054719\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603328443065\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603328857847\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603329252722\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:52 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603329665647\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603330083868\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603330468566\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603330865890\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603331250505\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603331648799\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603332058000\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603332450488\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603332865271\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603333256122\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603333658369\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603334061078\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603334452786\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603334869754\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603335266898\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603335686112\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603336113796\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603336508360\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603337695600\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603338112705\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603338663869\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603339105709\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603339493839\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:53 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603339915777\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603340329202\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603340738265\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603341173320\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603341650449\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603342059038\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603342452855\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603342845854\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603343252785\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603343756966\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603344226594\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603344664722\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603345093632\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603345494990\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603345928663\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603346336304\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603346750656\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603347176127\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603347608854\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603348055881\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603348465885\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603348910788\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603349362531\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:54 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603349796525\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603350254964\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603350693408\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603351138827\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603351554797\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603351993358\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603352401202\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603352845932\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603353335628\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603353778923\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603354229189\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603354685069\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603355146395\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603355569752\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603356023388\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603356452732\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603356903197\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603357453716\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603357901096\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603358548444\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603359117493\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:55 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603359578395\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603360041100\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603360486417\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603360958009\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603361413283\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603361885840\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603362359573\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603362803441\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603363275852\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603363699917\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603366223482\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603366657680\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603367132924\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603367585929\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603368071499\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603368522358\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603368990860\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603369452860\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:56 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603369919871\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603370403460\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603370882161\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603371382354\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603371918160\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603372578109\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603373061597\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603373639318\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603374119848\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603374575874\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603375063203\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603375535882\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603376015604\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603376494758\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603376986306\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603377476138\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603377970670\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603378821194\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603379286554\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:57 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603379730829\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603380266975\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603380726336\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603381230837\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603381691002\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603382195215\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603382665895\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603383172369\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603383666800\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603384134443\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603384638072\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603385262504\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603385752590\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603386262247\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603386732772\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603387233878\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603387713608\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603388223447\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603388703059\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603389217662\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:58 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603389788261\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603390288943\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603390749034\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603391327172\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603391793420\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603392308319\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603392773732\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603393273248\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603393746556\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603394254600\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603394780944\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603395293018\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603395762846\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603396274377\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603396782420\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603397300641\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603397773894\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603398287188\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603398775057\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603399290467\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:58:59 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603399797009\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603400311238\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603400781135\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603401324182\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603401803311\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603402330473\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603402805911\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603403347914\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603403838402\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603404351436\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603404851240\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603405359245\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603405869753\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603406367651\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603406885965\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603407366173\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603407857242\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603408316239\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603408804816\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603409344423\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:00 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603409895783\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603410433884\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603410935396\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603411437577\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603411948302\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603412470990\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603413036102\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603413595754\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603414151363\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603414888051\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603415427133\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603415928633\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603416430437\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603416928436\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603417458631\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603417968484\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603418437324\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:01 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603418933646\"]" + } + } + }, + { + "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" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Pubnub Storage" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:03 GMT" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Content-Encoding": [ + "gzip" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAAzzNuW0DURAE0VzWpoDpnTsWgiYBpaDsaVD1vUYbr57P6/f993Pb9fgOMW6GM4KRjGI0Yxj7PxzZkR3ZkR3ZkR3ZkR3ZkQM5kAM5kAM5kAM5kAM5kBM5kRM5kRM5kRM5kRM5kQu5kAu5kAu5kAu5kAu5kBu5kRu5kRu5kRu5kRu5kQd5kAd5kAd5kAd5kAd5kBd5kRd5kRd5kRd5kRd5kWXQMmwZuAxdBi/DlxGQUZCRkJ2GTkOnodPQaeg0dBo6DZ2GTkN7vR6qzi5zv2/vdsvzhCa8/Y7XBwAA//8DAGHamXe/AwAA" + } + } + }, + { + "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" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Pubnub Storage" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:03 GMT" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Content-Encoding": [ + "gzip" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAAzzNuW0DURAE0VzWpoDpnTsWgiYBpaDsaVD1vUYbr57P6/f993Pb9fgOMW6GM4KRjGI0Yxj7PxzZkR3ZkR3ZkR3ZkR3ZkQM5kAM5kAM5kAM5kAM5kBM5kRM5kRM5kRM5kRM5kQu5kAu5kAu5kAu5kAu5kBu5kRu5kRu5kRu5kRu5kQd5kAd5kAd5kAd5kAd5kBd5kRd5kRd5kRd5kRd5kWXQMmwZuAxdBi/DlxGQUZCRkJ2GTkOnodPQaeg0dBo6DZ2GTkN7vR6qzi5zv++e2z3OE5p1r6jXBwAA//8DALNAVX+/AwAA" + } + } + }, + { + "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&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" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Pubnub Storage" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:03 GMT" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Content-Encoding": [ + "gzip" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAA6yX3W7bMAyFX6XQdQqQIsWfvspQFEHhrsPSdEjSi6Lou48Out3MNGhgd7EVH4nUp3Psj3a+7C9v53Z30wF2N206nV5PcfW0P5ynP9cPL9P5vP8+xf3W4ubj8/54nA7zUx/tabo8Pt9+/eN8G797u/v20f4+056n91sfbdcuP16my+vP6djuGooOFSBy7oMFIMa/Hnm4vP+KuY5vh8Pn7h8hSYVGdwK0qpCmQtKVSefx0ormGZdLUwIQxqqQp0LWTdGqpeG1m8tL8u7AUq0NYV78khIDEGKn+pp6qoTUGW0er/QbgVKlTgSs83hNiVMlIlbHebymlPHNwDSQaca2ppQBzjBoeOd5pppSRjiDkKiMKpgIGeIMSiK4oeMZ4wxGKJ3m8VJ1ODvGMplOzNzLFGDKOMbmkVmZAkwZx0AgDK987jBlHDsruFf9MibO+oSB09BRry5lHNnMoM4TpoxjEG5C9b1LGUcJpQ3n7hocizyhuhhvoCBlHM2JhBMvuN8thCluC1NSljGSCbaEKauBc5UNz7aBgjCJfSivKHMaclHr3Kvce7YJ5KpK5tXS1sLUVAeM8qFOw5Tc1RWgbH6QGg2AGsbJrtroSpiixevZ1RxLhgyp0UAPc/ANSqnRABkZX6uvrSk1GmAbYaVVnBAywiOWTVxH2bJWwlTMhkt97zLGI5ZtaJyWKgUrYRrGznY17FLH8zAFtzADK/dpJUzBaYQhlKvLwxSdjeo8rYUpkOAGpZRxZBxIUu9TyjgO7or/J0w5Xqyp7HRrYcpxXqj86okp4xjprvHlsEzB/efnbwAAAP//AwA7DPUC3Q4AAA==" + } + } + } + ] +} \ 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..abf2433c --- /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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:03 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603437785890\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:03 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603438169523\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:03 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603438511510\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:03 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603438874553\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:03 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603439206896\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:03 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603439628018\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:03 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603439994096\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603440359223\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603440766868\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603441129177\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603441501427\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603441861370\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603442229195\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603442587921\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603442944666\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603443314391\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603443743586\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603444128996\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603444498136\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603444879280\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603445245582\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603445623220\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603446006980\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603446384250\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603446759288\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603447132478\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603447509427\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603447887904\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603448261884\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603448652442\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603449048329\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603449427628\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:04 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603449811662\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603450359328\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603450894839\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603451298440\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603451734692\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603452184039\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603452573961\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603452954055\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603453359487\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603453744739\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603454124511\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603454511674\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603454953634\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603455415447\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603455845482\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603456253582\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603456658857\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603457077360\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603457471393\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603457877787\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603458296738\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603458793426\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603459215616\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:05 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603459621439\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603460036793\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603460436960\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603460842596\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603461277718\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603461686639\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603462094899\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603462492040\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603462885321\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603463299457\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603463708957\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603464122289\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603464526473\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603464917607\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603465332429\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603465736390\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603466145160\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603466548731\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603466949152\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603467378476\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603467840850\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603468288962\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603468721699\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603469147923\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603469571276\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:06 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603469963747\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603470459902\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603470933182\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603471334309\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603471769097\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603472186463\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603472586563\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603473009174\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603473458740\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603473894120\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603474339421\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603474766480\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603475169206\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603475566065\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603475993879\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603476444549\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603476866726\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603477435563\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603477897799\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603478333279\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603478761197\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603479182588\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:07 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603479606677\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603480026367\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603480495150\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603480977220\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603481433728\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603481876208\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603482329408\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603482772043\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603483216072\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603483640907\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603484080991\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603484534474\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603484990048\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603485500490\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603485969557\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603486434422\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603486890133\"]" + } + } + }, + { + "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": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Content-Length": [ + "30" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:08 GMT" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "no-cache" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16757603487345542\"]" + } + } + }, + { + "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" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Pubnub Storage" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:09 GMT" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Content-Encoding": [ + "gzip" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAA0TNy2lDURAE0VzeWobpN/9YhJYCp+DsbbDretf04tTzeX2+vz5uux6/Q4yb4YxgJKMYzRjG/g1HdmRHdmRHdmRHdmRHduRADuRADuRADuRADuRADuRETuRETuRETuRETuRETuRCLuRCLuRCLuRCLuRCLuRGbuRGbuRGbuRGbuRGbuRBHuRBHuRBHuRBHuRBHuRFXuRFXuRFXuRFXuRFXmQZtAxbBi5Dl8HL8GUEZBRkJGSnodPQaeg0dBo6DZ2GTkOnodPQXq+HqrPLPCLvyJz7/5n2nyfu1zcAAAD//wMAMG0TEb8DAAA=" + } + } + }, + { + "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&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" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Access-Control-Allow-Credentials": [ + "true" + ], + "Connection": [ + "keep-alive" + ], + "Date": [ + "Tue, 07 Feb 2023 08:59:09 GMT" + ], + "Cache-Control": [ + "no-cache" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Content-Encoding": [ + "gzip" + ], + "Access-Control-Allow-Methods": [ + "GET, POST, DELETE, OPTIONS" + ] + }, + "body": { + "binary": "H4sIAAAAAAAAA5SVwW7CMAyGX2XKmUp24iT2XmWaUIXCQCtlouWAEO++NOI0Das+xnH/OL/9NXc3zf18ndz7mwfYvLndoR/HMiyBu9uXeXfoTmWa+q8ydf1uPp7HqasxrPsfd/fcqgt3KLdOoqsS8/FU5vN3GZcwphxzgkA5EVEkWTKen23n20+pSeN1GB6bet5fuaTJcUrZt4y1clmRyxRiTMFSHWtyLDmL6bIt+YV3HELw2SKHAEp5nBOiND9WmoeAip4g+8jNkNV6XtNLULtrq6/17n//GMCnkGx69Lo+BpKIsTm8+r4KGwx1Wry36SlwMFII2dv6odDBWAfGg01PwYN98EJGPYUP9tU+IAu9iAofHDwmyG1C1/YXFT44JAIB0/yhwgdX70Cknbi6Po0PioEot4lfrafxQSIAZJoX1PiIscqJiQ/U+IiSJEZbPzQ+ElX/vG1eND4SC2CwzbPGRw4UI72s77O+vq5cLufL9tn+5ele/n8tWBf7fpjK4xcAAP//AwCTFU6dLggAAA==" + } + } + } + ] +} \ 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/signal/single.json b/tests/integrational/fixtures/native_sync/signal/single.json new file mode 100644 index 00000000..94fd1a49 --- /dev/null +++ b/tests/integrational/fixtures/native_sync/signal/single.json @@ -0,0 +1,58 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/signal/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/unique_sync/0/%22test%22", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.0.2" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 20 Jan 2023 19:14:55 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Length": [ + "30" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16742420951247055\"]" + } + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/native_sync/signal/uuid.json b/tests/integrational/fixtures/native_sync/signal/uuid.json new file mode 100644 index 00000000..1459e9b6 --- /dev/null +++ b/tests/integrational/fixtures/native_sync/signal/uuid.json @@ -0,0 +1,111 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/signal/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/unique_sync/0/%22test%22?uuid=uuid-mock", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.0.2" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Date": [ + "Fri, 20 Jan 2023 19:09:37 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16742417771747939\"]" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://ps.pndsn.com/signal/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/unique_sync/0/%22test%22?uuid=new-uuid", + "body": null, + "headers": { + "User-Agent": [ + "PubNub-Python/7.0.2" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Date": [ + "Fri, 20 Jan 2023 19:09:37 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "30" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16742417772119058\"]" + } + } + } + ] +} \ 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..7a212a2a 100644 --- a/tests/integrational/native_sync/test_fetch_messages.py +++ b/tests/integrational/native_sync/test_fetch_messages.py @@ -1,9 +1,10 @@ import time +import unittest 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 +13,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 +37,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 +54,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 +65,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 +89,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 +109,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" @@ -131,12 +131,13 @@ def test_fetch_messages_actions_include_uuid(self): assert history[0].uuid == uuid1 assert history[1].uuid == uuid2 + @unittest.skip('refactor in progress') @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()) + pubnub = PubNub(pnconf_env_copy()) pubnub.config.uuid = "fetch-message-types" @@ -148,4 +149,4 @@ def test_fetch_messages_actions_include_message_type(self): 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) == '1' diff --git a/tests/integrational/native_sync/test_publish.py b/tests/integrational/native_sync/test_publish.py index d430ab07..9929b4f5 100644 --- a/tests/integrational/native_sync/test_publish.py +++ b/tests/integrational/native_sync/test_publish.py @@ -388,7 +388,7 @@ def test_publish_user_message_type(self): def test_publish_space_id(self): with pn_vcr.use_cassette('tests/integrational/fixtures/native_sync/publish/publish_space_id.yaml', filter_query_parameters=['uuid', 'pnsdk']) as cassette: - env = PubNub(pnconf).publish().channel('ch1').space('sp1').message("hi").sync() + env = PubNub(pnconf).publish().channel('ch1').space_id('sp1').message("hi").sync() assert isinstance(env.result, PNPublishResult) assert env.result.timetoken > 1 assert len(cassette) == 1 diff --git a/tests/integrational/native_sync/test_signal.py b/tests/integrational/native_sync/test_signal.py index e7192d57..c5bc867a 100644 --- a/tests/integrational/native_sync/test_signal.py +++ b/tests/integrational/native_sync/test_signal.py @@ -38,7 +38,7 @@ def test_signal_with_user_message_type(): def test_signal_with_space_id(): with pn_vcr.use_cassette('tests/integrational/fixtures/native_sync/signal/with_space_id.yaml', filter_query_parameters=['uuid', 'pnsdk']) as cassette: - envelope = PubNub(pnconf_demo_copy()).signal().channel('ch1').space('sp1').sync() + envelope = PubNub(pnconf_demo_copy()).signal().channel('ch1').space_id('sp1').sync() assert isinstance(envelope, Envelope) assert int(envelope.result.timetoken) > 1 From 21054385c393541f84916114c61a2272e7e3697d Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Thu, 16 Feb 2023 17:05:06 +0100 Subject: [PATCH 06/15] Add message_type and space_id to fetch_history endpoint --- pubnub/endpoints/fetch_messages.py | 5 ++- pubnub/models/consumer/history.py | 12 ++++++- pubnub/models/consumer/message_type.py | 18 ++++++---- tests/acceptance/history/environment.py | 23 +++++++++++++ tests/acceptance/history/steps/given_steps.py | 12 +++++++ tests/acceptance/history/steps/then_steps.py | 33 +++++++++++++++++++ tests/acceptance/history/steps/when_steps.py | 24 ++++++++++++++ 7 files changed, 119 insertions(+), 8 deletions(-) create mode 100644 tests/acceptance/history/environment.py create mode 100644 tests/acceptance/history/steps/given_steps.py create mode 100644 tests/acceptance/history/steps/then_steps.py create mode 100644 tests/acceptance/history/steps/when_steps.py diff --git a/pubnub/endpoints/fetch_messages.py b/pubnub/endpoints/fetch_messages.py index f198712c..a5a34ca7 100644 --- a/pubnub/endpoints/fetch_messages.py +++ b/pubnub/endpoints/fetch_messages.py @@ -85,7 +85,8 @@ def include_space_id(self, include_space_id): def custom_params(self): params = { 'max': int(self._count), - 'include_message_type': "true" if self._include_message_type else "false", + 'include_type': 'true' if self._include_message_type else 'false', + 'include_message_type': 'true' if self._include_message_type else 'false', } if self._start is not None: @@ -163,6 +164,8 @@ 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_space_id=self._include_space_id, start_timetoken=self._start, end_timetoken=self._end) diff --git a/pubnub/models/consumer/history.py b/pubnub/models/consumer/history.py index 0d64b5a6..6321c6ed 100644 --- a/pubnub/models/consumer/history.py +++ b/pubnub/models/consumer/history.py @@ -1,3 +1,4 @@ +from pubnub.models.consumer.message_type import PNMessageType class PNHistoryResult(object): def __init__(self, messages, start_timetoken, end_timetoken): self.messages = messages @@ -63,7 +64,8 @@ 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_space_id=False, + start_timetoken=None, end_timetoken=None): channels = {} for key, entry in json_input['channels'].items(): @@ -84,6 +86,14 @@ def from_json(cls, json_input, include_message_actions=False, start_timetoken=No else: message.actions = {} + if include_message_type: + message.message_type = PNMessageType.from_response( + user_type=item['type'] if 'type' in item.keys() else None, + internal_type=item['message_type']) + + if include_space_id: + message.space_id = item['space_id'] + channels[key].append(message) return PNFetchMessagesResult( diff --git a/pubnub/models/consumer/message_type.py b/pubnub/models/consumer/message_type.py index d7383c15..d6aa573c 100644 --- a/pubnub/models/consumer/message_type.py +++ b/pubnub/models/consumer/message_type.py @@ -1,18 +1,24 @@ class PNMessageType: - _internal_type: str = 0 + _internal_type: str = None _user_type: str = None + _type_mapping = { + 'None': 'message', + '0': 'message', + '1': 'signal', + '2': 'object', + '3': 'message_action', + '4': 'file', + } def __init__(self, user_type: str = None) -> None: self._user_type = user_type def set_internal_type(self, internal_type: str): - self._internal_type = internal_type + self._internal_type = self._type_mapping[str(internal_type)] + return self def from_response(user_type: str = None, internal_type: str = None): - message_type = PNMessageType(user_type) - if internal_type is not None: - message_type.set_internal_type(internal_type) - return message_type + return PNMessageType(user_type).set_internal_type(internal_type) def __str__(self) -> str: return self._user_type if self._user_type is not None else str(self._internal_type) 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..cec9533d --- /dev/null +++ b/tests/acceptance/history/steps/then_steps.py @@ -0,0 +1,33 @@ +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) diff --git a/tests/acceptance/history/steps/when_steps.py b/tests/acceptance/history/steps/when_steps.py new file mode 100644 index 00000000..b4b5811c --- /dev/null +++ b/tests/acceptance/history/steps/when_steps.py @@ -0,0 +1,24 @@ +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).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 == 'includeSpaceId': + request.include_space_id(value) + + envelope = request.sync() + context.status = envelope.status + context.result = envelope.result + context.messages = envelope.result.channels[channel] From 58d2215f72c9b42a29dcc08ec561e38cb7cef38b Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Thu, 16 Feb 2023 21:40:31 +0100 Subject: [PATCH 07/15] remove YAML VCRs - signal --- pubnub/models/consumer/history.py | 4 +- .../native_sync/signal/with_space_id.json | 58 +++++++++++++++++++ .../native_sync/signal/with_space_id.yaml | 36 ------------ .../signal/with_user_message_type.json | 58 +++++++++++++++++++ .../signal/with_user_message_type.yaml | 36 ------------ 5 files changed, 119 insertions(+), 73 deletions(-) create mode 100644 tests/integrational/fixtures/native_sync/signal/with_space_id.json delete mode 100644 tests/integrational/fixtures/native_sync/signal/with_space_id.yaml create mode 100644 tests/integrational/fixtures/native_sync/signal/with_user_message_type.json delete mode 100644 tests/integrational/fixtures/native_sync/signal/with_user_message_type.yaml diff --git a/pubnub/models/consumer/history.py b/pubnub/models/consumer/history.py index 6321c6ed..5591f6f7 100644 --- a/pubnub/models/consumer/history.py +++ b/pubnub/models/consumer/history.py @@ -1,4 +1,6 @@ from pubnub.models.consumer.message_type import PNMessageType + + class PNHistoryResult(object): def __init__(self, messages, start_timetoken, end_timetoken): self.messages = messages @@ -65,7 +67,7 @@ def __str__(self): @classmethod def from_json(cls, json_input, include_message_actions=False, include_message_type=False, include_space_id=False, - start_timetoken=None, end_timetoken=None): + start_timetoken=None, end_timetoken=None): channels = {} for key, entry in json_input['channels'].items(): 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..bec08063 --- /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": { + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Feb 2023 20:39:25 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "30" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16765799658866173\"]" + } + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/native_sync/signal/with_space_id.yaml b/tests/integrational/fixtures/native_sync/signal/with_space_id.yaml deleted file mode 100644 index 7eb9d3df..00000000 --- a/tests/integrational/fixtures/native_sync/signal/with_space_id.yaml +++ /dev/null @@ -1,36 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/7.1.0 - method: GET - uri: https://ps.pndsn.com/signal/demo/demo/0/ch1/0/null?space-id=sp1 - response: - body: - string: '[1,"Sent","16742259451827459"]' - headers: - Access-Control-Allow-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, 20 Jan 2023 14:45:45 GMT - status: - code: 200 - message: OK -version: 1 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..6f3defd3 --- /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": { + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Access-Control-Allow-Methods": [ + "GET" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Feb 2023 20:39:25 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "30" + ] + }, + "body": { + "string": "[1,\"Sent\",\"16765799657338103\"]" + } + } + } + ] +} \ No newline at end of file diff --git a/tests/integrational/fixtures/native_sync/signal/with_user_message_type.yaml b/tests/integrational/fixtures/native_sync/signal/with_user_message_type.yaml deleted file mode 100644 index e75422f6..00000000 --- a/tests/integrational/fixtures/native_sync/signal/with_user_message_type.yaml +++ /dev/null @@ -1,36 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/7.1.0 - method: GET - uri: https://ps.pndsn.com/signal/demo/demo/0/ch1/0/null?type=test_signal - response: - body: - string: '[1,"Sent","16742259449318974"]' - headers: - Access-Control-Allow-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, 20 Jan 2023 14:45:44 GMT - status: - code: 200 - message: OK -version: 1 From 1e956746ae73df611ad925dfad5915fb3752c76e Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Thu, 16 Feb 2023 22:03:16 +0100 Subject: [PATCH 08/15] Swapped serializer for asyncio integrational subscribe tests Fix tests for native sync publish Fix leaky serializer --- tests/integrational/asyncio/test_subscribe.py | 86 ++-- .../asyncio/subscription/cg_join_leave.json | 455 ++++++++++++++++++ .../subscription/cg_sub_pub_unsub.json | 305 ++++++++++++ .../asyncio/subscription/cg_sub_unsub.json | 212 ++++++++ .../asyncio/subscription/join_leave.json | 347 +++++++++++++ .../subscription/publish_message_type.json | 143 ++++++ .../subscription/publish_message_type.yaml | 91 ---- .../subscription/publish_space_id.json | 143 ++++++ .../subscription/publish_space_id.yaml | 91 ---- .../asyncio/subscription/sub_pub_unsub.json | 143 ++++++ .../asyncio/subscription/sub_pub_unsub.yaml | 199 +++++--- .../subscription/sub_pub_unsub_enc.json | 197 ++++++++ .../asyncio/subscription/sub_unsub.json | 50 ++ .../asyncio/subscription/unsubscribe_all.json | 320 ++++++++++++ .../publish_space_id.json} | 30 +- .../native_sync/publish/publish_space_id.yaml | 36 -- .../publish/publish_user_message_type.json | 58 +++ .../publish/publish_user_message_type.yaml | 36 -- .../fixtures/native_sync/signal/uuid.json | 111 ----- .../native_sync/signal/with_space_id.json | 20 +- .../signal/with_user_message_type.json | 20 +- .../integrational/native_sync/test_publish.py | 14 +- .../integrational/native_sync/test_signal.py | 8 +- tests/integrational/vcr_serializer.py | 19 +- 24 files changed, 2611 insertions(+), 523 deletions(-) create mode 100644 tests/integrational/fixtures/asyncio/subscription/cg_join_leave.json create mode 100644 tests/integrational/fixtures/asyncio/subscription/cg_sub_pub_unsub.json create mode 100644 tests/integrational/fixtures/asyncio/subscription/cg_sub_unsub.json create mode 100644 tests/integrational/fixtures/asyncio/subscription/join_leave.json create mode 100644 tests/integrational/fixtures/asyncio/subscription/publish_message_type.json delete mode 100644 tests/integrational/fixtures/asyncio/subscription/publish_message_type.yaml create mode 100644 tests/integrational/fixtures/asyncio/subscription/publish_space_id.json delete mode 100644 tests/integrational/fixtures/asyncio/subscription/publish_space_id.yaml create mode 100644 tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub.json create mode 100644 tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub_enc.json create mode 100644 tests/integrational/fixtures/asyncio/subscription/sub_unsub.json create mode 100644 tests/integrational/fixtures/asyncio/subscription/unsubscribe_all.json rename tests/integrational/fixtures/native_sync/{signal/single.json => publish/publish_space_id.json} (83%) delete mode 100644 tests/integrational/fixtures/native_sync/publish/publish_space_id.yaml create mode 100644 tests/integrational/fixtures/native_sync/publish/publish_user_message_type.json delete mode 100644 tests/integrational/fixtures/native_sync/publish/publish_user_message_type.yaml delete mode 100644 tests/integrational/fixtures/native_sync/signal/uuid.json diff --git a/tests/integrational/asyncio/test_subscribe.py b/tests/integrational/asyncio/test_subscribe.py index ff65e8d2..c9517cb1 100644 --- a/tests/integrational/asyncio/test_subscribe.py +++ b/tests/integrational/asyncio/test_subscribe.py @@ -7,7 +7,7 @@ from pubnub.models.consumer.pubsub import PNMessageResult from pubnub.models.consumer.message_type import PNMessageType 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 @@ -19,13 +19,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) @@ -49,12 +49,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) @@ -98,13 +98,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"): @@ -143,14 +141,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) @@ -196,15 +194,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 @@ -225,16 +223,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 @@ -269,13 +267,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" @@ -336,15 +334,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" @@ -386,16 +382,16 @@ async def test_unsubscribe_all(event_loop, sleeper=asyncio.sleep): await pubnub.stop() -@get_sleeper('tests/integrational/fixtures/asyncio/subscription/publish_space_id.yaml') +@get_sleeper('tests/integrational/fixtures/asyncio/subscription/publish_space_id.json') @pn_vcr.use_cassette( - 'tests/integrational/fixtures/asyncio/subscription/publish_space_id.yaml', + '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_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) @@ -443,16 +439,16 @@ async def test_subscribe_publish_space_id(event_loop, sleeper=asyncio.sleep): await pubnub_sub.stop() -@get_sleeper('tests/integrational/fixtures/asyncio/subscription/publish_message_type.yaml') +@get_sleeper('tests/integrational/fixtures/asyncio/subscription/publish_message_type.json') @pn_vcr.use_cassette( - 'tests/integrational/fixtures/asyncio/subscription/publish_message_type.yaml', + '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_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) 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_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_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/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/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_message_type.yaml b/tests/integrational/fixtures/asyncio/subscription/publish_message_type.yaml deleted file mode 100644 index 3b19950c..00000000 --- a/tests/integrational/fixtures/asyncio/subscription/publish_message_type.yaml +++ /dev/null @@ -1,91 +0,0 @@ -interactions: -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/7.1.0 - 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":"16745835146497675","r":43},"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: - - Tue, 24 Jan 2023 18:09:50 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%2F7.1.0&uuid=test-subscribe-asyncio-uuid-sub -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/7.1.0 - 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&type=MyOwnCustomMessageType&uuid=test-subscribe-asyncio-uuid-pub - response: - body: - string: '[1,"Sent","16745837903154482"]' - headers: - Access-Control-Allow-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, 24 Jan 2023 18:09:50 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?type=MyOwnCustomMessageType&seqn=1&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-pub -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/7.1.0 - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-ch/0?tr=43&tt=16745835146497675&uuid=test-subscribe-asyncio-uuid-sub - response: - body: - string: '{"t":{"t":"16745837903154482","r":43},"m":[{"a":"2","f":0,"i":"test-subscribe-asyncio-uuid-pub","s":1,"p":{"t":"16745837903154482","r":43},"k":"sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe","c":"test-subscribe-asyncio-ch","d":"hey","mt":"MyOwnCustomMessageType"}]}' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Tue, 24 Jan 2023 18:09:50 GMT - Transfer-Encoding: - - chunked - 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=16745835146497675&tr=43&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-sub -version: 1 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/publish_space_id.yaml b/tests/integrational/fixtures/asyncio/subscription/publish_space_id.yaml deleted file mode 100644 index 2fe70b07..00000000 --- a/tests/integrational/fixtures/asyncio/subscription/publish_space_id.yaml +++ /dev/null @@ -1,91 +0,0 @@ -interactions: -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/7.1.0 - 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":"16745831073446314","r":42},"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: - - Tue, 24 Jan 2023 17:59:09 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%2F7.1.0&uuid=test-subscribe-asyncio-uuid-sub -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/7.1.0 - 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&space-id=HelloSpace&uuid=test-subscribe-asyncio-uuid-pub - response: - body: - string: '[1,"Sent","16745831495141130"]' - headers: - Access-Control-Allow-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, 24 Jan 2023 17:59:09 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?space-id=HelloSpace&seqn=1&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-pub -- request: - body: null - headers: - User-Agent: - - PubNub-Python-Asyncio/7.1.0 - method: GET - uri: https://ps.pndsn.com/v2/subscribe/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/test-subscribe-asyncio-ch/0?tr=42&tt=16745831073446314&uuid=test-subscribe-asyncio-uuid-sub - response: - body: - string: '{"t":{"t":"16745831495141130","r":42},"m":[{"a":"2","f":0,"i":"test-subscribe-asyncio-uuid-pub","s":1,"p":{"t":"16745831495141130","r":42},"k":"sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe","c":"test-subscribe-asyncio-ch","d":"hey","si":"HelloSpace"}]}' - headers: - Access-Control-Allow-Methods: - - GET - Access-Control-Allow-Origin: - - '*' - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Encoding: - - gzip - Content-Type: - - text/javascript; charset="UTF-8" - Date: - - Tue, 24 Jan 2023 17:59:09 GMT - Transfer-Encoding: - - chunked - 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=16745831073446314&tr=42&pnsdk=PubNub-Python-Asyncio%2F7.1.0&uuid=test-subscribe-asyncio-uuid-sub -version: 1 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 index ab10a783..84bce695 100644 --- a/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub.yaml +++ b/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub.yaml @@ -1,56 +1,143 @@ -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 +{ + "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 20:57:21 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\":\"16765809007582204\",\"r\":41},\"m\":[]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/sub-c-88b9dbab-20f1-48d4-8df3-9bfabb00c0b4/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 20:57:21 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\",\"16765810415170321\"]" + }, + "url": "https://ps.pndsn.com/publish/pub-c-23eccf23-a43d-4621-8cb2-6950ed309b93/sub-c-88b9dbab-20f1-48d4-8df3-9bfabb00c0b4/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=41&tt=16765809007582204&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 20:57:21 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\":\"16765810415170321\",\"r\":41},\"m\":[{\"a\":\"5\",\"f\":0,\"i\":\"test-subscribe-asyncio-uuid-pub\",\"s\":1,\"p\":{\"t\":\"16765810415170321\",\"r\":41},\"k\":\"sub-c-88b9dbab-20f1-48d4-8df3-9bfabb00c0b4\",\"c\":\"test-subscribe-asyncio-ch\",\"d\":\"hey\"}]}" + }, + "url": "https://ps.pndsn.com/v2/subscribe/sub-c-88b9dbab-20f1-48d4-8df3-9bfabb00c0b4/test-subscribe-asyncio-ch/0?tt=16765809007582204&tr=41&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_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_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/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/native_sync/signal/single.json b/tests/integrational/fixtures/native_sync/publish/publish_space_id.json similarity index 83% rename from tests/integrational/fixtures/native_sync/signal/single.json rename to tests/integrational/fixtures/native_sync/publish/publish_space_id.json index 94fd1a49..be5648da 100644 --- a/tests/integrational/fixtures/native_sync/signal/single.json +++ b/tests/integrational/fixtures/native_sync/publish/publish_space_id.json @@ -4,11 +4,11 @@ { "request": { "method": "GET", - "uri": "https://ps.pndsn.com/signal/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/unique_sync/0/%22test%22", + "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.0.2" + "PubNub-Python/7.1.0" ], "Accept-Encoding": [ "gzip, deflate" @@ -27,30 +27,30 @@ "message": "OK" }, "headers": { + "Access-Control-Allow-Methods": [ + "GET" + ], + "Content-Length": [ + "30" + ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" ], - "Cache-Control": [ - "no-cache" + "Access-Control-Allow-Origin": [ + "*" ], "Date": [ - "Fri, 20 Jan 2023 19:14:55 GMT" + "Thu, 16 Feb 2023 21:16:49 GMT" + ], + "Cache-Control": [ + "no-cache" ], "Connection": [ "keep-alive" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Allow-Methods": [ - "GET" - ], - "Content-Length": [ - "30" ] }, "body": { - "string": "[1,\"Sent\",\"16742420951247055\"]" + "string": "[1,\"Sent\",\"16765822096711785\"]" } } } diff --git a/tests/integrational/fixtures/native_sync/publish/publish_space_id.yaml b/tests/integrational/fixtures/native_sync/publish/publish_space_id.yaml deleted file mode 100644 index 806dbd14..00000000 --- a/tests/integrational/fixtures/native_sync/publish/publish_space_id.yaml +++ /dev/null @@ -1,36 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/7.1.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/ch1/0/%22hi%22?seqn=1&space-id=sp1 - response: - body: - string: '[1,"Sent","16742188428215060"]' - headers: - Access-Control-Allow-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, 20 Jan 2023 12:47:22 GMT - status: - code: 200 - message: OK -version: 1 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/publish/publish_user_message_type.yaml b/tests/integrational/fixtures/native_sync/publish/publish_user_message_type.yaml deleted file mode 100644 index 65bf171e..00000000 --- a/tests/integrational/fixtures/native_sync/publish/publish_user_message_type.yaml +++ /dev/null @@ -1,36 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - PubNub-Python/7.1.0 - method: GET - uri: https://ps.pndsn.com/publish/pub-c-739aa0fc-3ed5-472b-af26-aca1b333ec52/sub-c-33f55052-190b-11e6-bfbc-02ee2ddab7fe/0/ch1/0/%22hi%22?seqn=1&type=test_message - response: - body: - string: '[1,"Sent","16742222446704312"]' - headers: - Access-Control-Allow-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, 20 Jan 2023 13:44:04 GMT - status: - code: 200 - message: OK -version: 1 diff --git a/tests/integrational/fixtures/native_sync/signal/uuid.json b/tests/integrational/fixtures/native_sync/signal/uuid.json deleted file mode 100644 index 1459e9b6..00000000 --- a/tests/integrational/fixtures/native_sync/signal/uuid.json +++ /dev/null @@ -1,111 +0,0 @@ -{ - "version": 1, - "interactions": [ - { - "request": { - "method": "GET", - "uri": "https://ps.pndsn.com/signal/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/unique_sync/0/%22test%22?uuid=uuid-mock", - "body": null, - "headers": { - "User-Agent": [ - "PubNub-Python/7.0.2" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Allow-Methods": [ - "GET" - ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" - ], - "Date": [ - "Fri, 20 Jan 2023 19:09:37 GMT" - ], - "Connection": [ - "keep-alive" - ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ] - }, - "body": { - "string": "[1,\"Sent\",\"16742417771747939\"]" - } - } - }, - { - "request": { - "method": "GET", - "uri": "https://ps.pndsn.com/signal/{PN_KEY_PUBLISH}/{PN_KEY_SUBSCRIBE}/0/unique_sync/0/%22test%22?uuid=new-uuid", - "body": null, - "headers": { - "User-Agent": [ - "PubNub-Python/7.0.2" - ], - "Accept-Encoding": [ - "gzip, deflate" - ], - "Accept": [ - "*/*" - ], - "Connection": [ - "keep-alive" - ] - } - }, - "response": { - "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Access-Control-Allow-Origin": [ - "*" - ], - "Access-Control-Allow-Methods": [ - "GET" - ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" - ], - "Date": [ - "Fri, 20 Jan 2023 19:09:37 GMT" - ], - "Connection": [ - "keep-alive" - ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ] - }, - "body": { - "string": "[1,\"Sent\",\"16742417772119058\"]" - } - } - } - ] -} \ 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 index bec08063..ee1a4c95 100644 --- a/tests/integrational/fixtures/native_sync/signal/with_space_id.json +++ b/tests/integrational/fixtures/native_sync/signal/with_space_id.json @@ -27,30 +27,30 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Connection": [ + "keep-alive" ], "Access-Control-Allow-Origin": [ "*" ], + "Content-Length": [ + "30" + ], "Access-Control-Allow-Methods": [ "GET" ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Thu, 16 Feb 2023 20:39:25 GMT" - ], - "Connection": [ - "keep-alive" + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" ], - "Content-Length": [ - "30" + "Date": [ + "Thu, 16 Feb 2023 21:14:55 GMT" ] }, "body": { - "string": "[1,\"Sent\",\"16765799658866173\"]" + "string": "[1,\"Sent\",\"16765820950334052\"]" } } } 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 index 6f3defd3..6ffbc1f5 100644 --- a/tests/integrational/fixtures/native_sync/signal/with_user_message_type.json +++ b/tests/integrational/fixtures/native_sync/signal/with_user_message_type.json @@ -27,30 +27,30 @@ "message": "OK" }, "headers": { - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Connection": [ + "keep-alive" ], "Access-Control-Allow-Origin": [ "*" ], + "Content-Length": [ + "30" + ], "Access-Control-Allow-Methods": [ "GET" ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Thu, 16 Feb 2023 20:39:25 GMT" - ], - "Connection": [ - "keep-alive" + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" ], - "Content-Length": [ - "30" + "Date": [ + "Thu, 16 Feb 2023 21:14:54 GMT" ] }, "body": { - "string": "[1,\"Sent\",\"16765799657338103\"]" + "string": "[1,\"Sent\",\"16765820948668731\"]" } } } diff --git a/tests/integrational/native_sync/test_publish.py b/tests/integrational/native_sync/test_publish.py index 9929b4f5..319ecde3 100644 --- a/tests/integrational/native_sync/test_publish.py +++ b/tests/integrational/native_sync/test_publish.py @@ -5,7 +5,7 @@ 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 @@ -374,9 +374,9 @@ def test_publish_ttl_100(self): 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.yaml', - filter_query_parameters=['uuid', 'pnsdk']) as cassette: - env = PubNub(pnconf).publish().channel("ch1").message("hi").message_type('test_message').sync() + 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 @@ -386,9 +386,9 @@ def test_publish_user_message_type(self): 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.yaml', - filter_query_parameters=['uuid', 'pnsdk']) as cassette: - env = PubNub(pnconf).publish().channel('ch1').space_id('sp1').message("hi").sync() + 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 diff --git a/tests/integrational/native_sync/test_signal.py b/tests/integrational/native_sync/test_signal.py index c5bc867a..5386da62 100644 --- a/tests/integrational/native_sync/test_signal.py +++ b/tests/integrational/native_sync/test_signal.py @@ -22,8 +22,8 @@ def test_single_channel(): def test_signal_with_user_message_type(): - with pn_vcr.use_cassette('tests/integrational/fixtures/native_sync/signal/with_user_message_type.yaml', - filter_query_parameters=['uuid', 'pnsdk']) as cassette: + 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() @@ -36,8 +36,8 @@ def test_signal_with_user_message_type(): def test_signal_with_space_id(): - with pn_vcr.use_cassette('tests/integrational/fixtures/native_sync/signal/with_space_id.yaml', - filter_query_parameters=['uuid', 'pnsdk']) as cassette: + 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) diff --git a/tests/integrational/vcr_serializer.py b/tests/integrational/vcr_serializer.py index 3804bd41..98816e21 100644 --- a/tests/integrational/vcr_serializer.py +++ b/tests/integrational/vcr_serializer.py @@ -11,14 +11,14 @@ class PNSerializer: def __init__(self) -> None: self.envs = {key: value for key, value in os.environ.items() if key.startswith('PN_KEY_')} - def replace_keys(self, uri_string): + def replace_keys(self, cassette_string): for pattern in self.patterns: - found = re.search(pattern, uri_string) + found = re.search(pattern, cassette_string) if found and found.group(0) in list(self.envs.values()): key = list(self.envs.keys())[list(self.envs.values()).index(found.group(0))] if key: - uri_string = re.sub(pattern, f'{{{key}}}', uri_string) - return uri_string + cassette_string = re.sub(pattern, f'{{{key}}}', cassette_string) + return cassette_string def serialize(self, cassette_dict): for index, interaction in enumerate(cassette_dict['interactions']): @@ -27,18 +27,15 @@ def serialize(self, cassette_dict): ascii_body = b64encode(interaction['response']['body']['string']).decode('ascii') interaction['response']['body'] = {'binary': ascii_body} - interaction['request']['uri'] = self.replace_keys(interaction['request']['uri']) cassette_dict['interactions'][index] == interaction - return serialize(cassette_dict) + return self.replace_keys(serialize(cassette_dict)) - def replace_placeholders(self, interaction_dict): + def replace_placeholders(self, cassette_string): for key in self.envs.keys(): - interaction_dict['request']['uri'] = re.sub(f'{{{key}}}', - self.envs[key], - interaction_dict['request']['uri']) - return interaction_dict + cassette_string = re.sub(f'{{{key}}}', self.envs[key], cassette_string['request']['uri']) def deserialize(self, cassette_string): + cassette_string = self.replace_placeholders(cassette_string) cassette_dict = deserialize(cassette_string) for index, interaction in enumerate(cassette_dict['interactions']): interaction = self.replace_placeholders(interaction) From 6d5f4e6d72d36ad278d3afea515fb69e77e09b5d Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Tue, 21 Feb 2023 16:16:11 +0100 Subject: [PATCH 09/15] spaceId and MessageType in file ops --- .../file_operations/publish_file_message.py | 18 +++++++++++++ pubnub/endpoints/file_operations/send_file.py | 25 ++++++++++++++++--- 2 files changed, 40 insertions(+), 3 deletions(-) diff --git a/pubnub/endpoints/file_operations/publish_file_message.py b/pubnub/endpoints/file_operations/publish_file_message.py index 55fa8d3c..a68aa841 100644 --- a/pubnub/endpoints/file_operations/publish_file_message.py +++ b/pubnub/endpoints/file_operations/publish_file_message.py @@ -3,6 +3,8 @@ from pubnub import utils from pubnub.models.consumer.file import PNPublishFileMessageResult from pubnub.endpoints.mixins import TimeTokenOverrideMixin +from pubnub.models.consumer.message_type import PNMessageType +from typing import Union class PublishFileMessage(FileOperationEndpoint, TimeTokenOverrideMixin): @@ -20,6 +22,8 @@ def __init__(self, pubnub): self._cipher_key = None self._replicate = None self._ptto = None + self._message_type = None + self._space_id = None def meta(self, meta): self._meta = meta @@ -49,6 +53,14 @@ def file_name(self, file_name): self._file_name = file_name return self + def message_type(self, message_type: Union[PNMessageType, str]): + self._message_type = message_type + return self + + def space_id(self, space_id): + self._space_id = str(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 +99,12 @@ def custom_params(self): "ttl": self._ttl, "store": 1 if self._should_store else 0 }) + if self._message_type is not None: + params['type'] = str(self._message_type) + + if self._space_id is not None: + params['space-id'] = str(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..7491b564 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 @@ -7,7 +6,8 @@ from pubnub.endpoints.file_operations.fetch_upload_details import FetchFileUploadS3Data from pubnub.request_handlers.requests_handler import RequestsRequestHandler from pubnub.endpoints.mixins import TimeTokenOverrideMixin - +from pubnub.models.consumer.message_type import PNMessageType +from typing import Union class SendFileNative(FileOperationEndpoint, TimeTokenOverrideMixin): def __init__(self, pubnub): @@ -23,6 +23,8 @@ def __init__(self, pubnub): self._file_object = None self._replicate = None self._ptto = None + self._message_type = None + self._space_id = None def file_object(self, fd): self._file_object = fd @@ -69,7 +71,16 @@ def is_compressable(self): return True def custom_params(self): - return {} + import ipdb + ipdb.set_trace() + params = {} + if self._message_type is not None: + params['type'] = str(self._message_type) + + if self._space_id is not None: + params['space-id'] = str(self._space_id) + + return params def validate_params(self): self.validate_subscribe_key() @@ -110,6 +121,14 @@ def cipher_key(self, cipher_key): self._cipher_key = cipher_key return self + def message_type(self, message_type: Union[PNMessageType, str]): + self._message_type = message_type + return self + + def space_id(self, space_id): + self._space_id = str(space_id) + return self + def create_response(self, envelope, data=None): return PNSendFileResult(envelope, self._file_upload_envelope) From 4b4776e440745ea64f9fe7a9a7737e9c3a7cf929 Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Mon, 27 Feb 2023 08:35:24 +0100 Subject: [PATCH 10/15] Acceptance tests for files cleanup + add acceptance test action --- .github/workflows/run-tests.yml | 4 + pubnub/endpoints/file_operations/send_file.py | 7 +- pubnub/models/consumer/history.py | 4 +- pubnub/models/consumer/message_type.py | 18 +- tests/acceptance/files/environment.py | 23 ++ tests/acceptance/files/steps/steps.py | 90 ++++++++ tests/acceptance/files/test.txt | 3 + .../asyncio/subscription/cg_join_leave.yaml | 133 ----------- .../subscription/cg_sub_pub_unsub.yaml | 86 ------- .../asyncio/subscription/cg_sub_unsub.yaml | 60 ----- .../asyncio/subscription/join_leave.yaml | 103 --------- .../asyncio/subscription/sub_pub_unsub.yaml | 143 ------------ .../subscription/sub_pub_unsub_enc.yaml | 124 ----------- .../asyncio/subscription/sub_unsub.yaml | 30 --- .../asyncio/subscription/unsubscribe_all.yaml | 210 ------------------ tests/integrational/vcr_serializer.py | 19 +- 16 files changed, 146 insertions(+), 911 deletions(-) create mode 100644 tests/acceptance/files/environment.py create mode 100644 tests/acceptance/files/steps/steps.py create mode 100644 tests/acceptance/files/test.txt delete mode 100644 tests/integrational/fixtures/asyncio/subscription/cg_join_leave.yaml delete mode 100644 tests/integrational/fixtures/asyncio/subscription/cg_sub_pub_unsub.yaml delete mode 100644 tests/integrational/fixtures/asyncio/subscription/cg_sub_unsub.yaml delete mode 100644 tests/integrational/fixtures/asyncio/subscription/join_leave.yaml delete mode 100644 tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub.yaml delete mode 100644 tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub_enc.yaml delete mode 100644 tests/integrational/fixtures/asyncio/subscription/sub_unsub.yaml delete mode 100644 tests/integrational/fixtures/asyncio/subscription/unsubscribe_all.yaml 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/pubnub/endpoints/file_operations/send_file.py b/pubnub/endpoints/file_operations/send_file.py index 7491b564..f35d881e 100644 --- a/pubnub/endpoints/file_operations/send_file.py +++ b/pubnub/endpoints/file_operations/send_file.py @@ -9,6 +9,7 @@ from pubnub.models.consumer.message_type import PNMessageType from typing import Union + class SendFileNative(FileOperationEndpoint, TimeTokenOverrideMixin): def __init__(self, pubnub): super(SendFileNative, self).__init__(pubnub) @@ -71,8 +72,6 @@ def is_compressable(self): return True def custom_params(self): - import ipdb - ipdb.set_trace() params = {} if self._message_type is not None: params['type'] = str(self._message_type) @@ -158,7 +157,9 @@ def sync(self): ttl(self._ttl).\ replicate(self._replicate).\ ptto(self._ptto).\ - cipher_key(self._cipher_key).sync() + cipher_key(self._cipher_key).\ + message_type(self._message_type).\ + space_id(self._space_id).sync() response_envelope.result.timestamp = publish_file_response.result.timestamp return response_envelope diff --git a/pubnub/models/consumer/history.py b/pubnub/models/consumer/history.py index 5591f6f7..f66fab9c 100644 --- a/pubnub/models/consumer/history.py +++ b/pubnub/models/consumer/history.py @@ -90,8 +90,8 @@ def from_json(cls, json_input, include_message_actions=False, include_message_ty if include_message_type: message.message_type = PNMessageType.from_response( - user_type=item['type'] if 'type' in item.keys() else None, - internal_type=item['message_type']) + message_type=item['type'] if 'type' in item.keys() else None, + pn_message_type=item['message_type']) if include_space_id: message.space_id = item['space_id'] diff --git a/pubnub/models/consumer/message_type.py b/pubnub/models/consumer/message_type.py index d6aa573c..ea6b3aa5 100644 --- a/pubnub/models/consumer/message_type.py +++ b/pubnub/models/consumer/message_type.py @@ -1,6 +1,6 @@ class PNMessageType: - _internal_type: str = None - _user_type: str = None + pn_message_type: str = None + message_type: str = None _type_mapping = { 'None': 'message', '0': 'message', @@ -10,18 +10,18 @@ class PNMessageType: '4': 'file', } - def __init__(self, user_type: str = None) -> None: - self._user_type = user_type + def __init__(self, message_type: str = None) -> None: + self.message_type = message_type - def set_internal_type(self, internal_type: str): - self._internal_type = self._type_mapping[str(internal_type)] + def set_pn_message_type(self, pn_message_type: str): + self.pn_message_type = self._type_mapping[str(pn_message_type)] return self - def from_response(user_type: str = None, internal_type: str = None): - return PNMessageType(user_type).set_internal_type(internal_type) + def from_response(message_type: str = None, pn_message_type: str = None): + return PNMessageType(message_type).set_pn_message_type(pn_message_type) def __str__(self) -> str: - return self._user_type if self._user_type is not None else str(self._internal_type) + return self.message_type if self.message_type is not None else str(self.pn_message_type) def toJSON(self) -> str: return str(self) 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..9adf30b3 --- /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 \'{message_type}\' message type') +def step_impl(context, space_id, message_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).message_type(message_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/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.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.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.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/sub_pub_unsub.yaml b/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub.yaml deleted file mode 100644 index 84bce695..00000000 --- a/tests/integrational/fixtures/asyncio/subscription/sub_pub_unsub.yaml +++ /dev/null @@ -1,143 +0,0 @@ -{ - "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 20:57:21 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\":\"16765809007582204\",\"r\":41},\"m\":[]}" - }, - "url": "https://ps.pndsn.com/v2/subscribe/sub-c-88b9dbab-20f1-48d4-8df3-9bfabb00c0b4/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 20:57:21 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\",\"16765810415170321\"]" - }, - "url": "https://ps.pndsn.com/publish/pub-c-23eccf23-a43d-4621-8cb2-6950ed309b93/sub-c-88b9dbab-20f1-48d4-8df3-9bfabb00c0b4/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=41&tt=16765809007582204&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 20:57:21 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\":\"16765810415170321\",\"r\":41},\"m\":[{\"a\":\"5\",\"f\":0,\"i\":\"test-subscribe-asyncio-uuid-pub\",\"s\":1,\"p\":{\"t\":\"16765810415170321\",\"r\":41},\"k\":\"sub-c-88b9dbab-20f1-48d4-8df3-9bfabb00c0b4\",\"c\":\"test-subscribe-asyncio-ch\",\"d\":\"hey\"}]}" - }, - "url": "https://ps.pndsn.com/v2/subscribe/sub-c-88b9dbab-20f1-48d4-8df3-9bfabb00c0b4/test-subscribe-asyncio-ch/0?tt=16765809007582204&tr=41&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_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.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.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/vcr_serializer.py b/tests/integrational/vcr_serializer.py index 98816e21..3804bd41 100644 --- a/tests/integrational/vcr_serializer.py +++ b/tests/integrational/vcr_serializer.py @@ -11,14 +11,14 @@ class PNSerializer: def __init__(self) -> None: self.envs = {key: value for key, value in os.environ.items() if key.startswith('PN_KEY_')} - def replace_keys(self, cassette_string): + def replace_keys(self, uri_string): for pattern in self.patterns: - found = re.search(pattern, cassette_string) + found = re.search(pattern, uri_string) if found and found.group(0) in list(self.envs.values()): key = list(self.envs.keys())[list(self.envs.values()).index(found.group(0))] if key: - cassette_string = re.sub(pattern, f'{{{key}}}', cassette_string) - return cassette_string + uri_string = re.sub(pattern, f'{{{key}}}', uri_string) + return uri_string def serialize(self, cassette_dict): for index, interaction in enumerate(cassette_dict['interactions']): @@ -27,15 +27,18 @@ def serialize(self, cassette_dict): ascii_body = b64encode(interaction['response']['body']['string']).decode('ascii') interaction['response']['body'] = {'binary': ascii_body} + interaction['request']['uri'] = self.replace_keys(interaction['request']['uri']) cassette_dict['interactions'][index] == interaction - return self.replace_keys(serialize(cassette_dict)) + return serialize(cassette_dict) - def replace_placeholders(self, cassette_string): + def replace_placeholders(self, interaction_dict): for key in self.envs.keys(): - cassette_string = re.sub(f'{{{key}}}', self.envs[key], cassette_string['request']['uri']) + interaction_dict['request']['uri'] = re.sub(f'{{{key}}}', + self.envs[key], + interaction_dict['request']['uri']) + return interaction_dict def deserialize(self, cassette_string): - cassette_string = self.replace_placeholders(cassette_string) cassette_dict = deserialize(cassette_string) for index, interaction in enumerate(cassette_dict['interactions']): interaction = self.replace_placeholders(interaction) From da677bafbe9b99bf432fcccbe0485013c8a8cfab Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Mon, 27 Feb 2023 17:19:11 +0100 Subject: [PATCH 11/15] Fix typo --- tests/integrational/asyncio/test_heartbeat.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/integrational/asyncio/test_heartbeat.py b/tests/integrational/asyncio/test_heartbeat.py index a66a284d..86838ee5 100644 --- a/tests/integrational/asyncio/test_heartbeat.py +++ b/tests/integrational/asyncio/test_heartbeat.py @@ -77,3 +77,6 @@ async def test_timeout_event_on_broken_heartbeat(event_loop): await pubnub.stop() await pubnub_listener.stop() + + + From f077ada60a7762386b6fbf043417122049179581 Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Fri, 3 Mar 2023 13:37:13 +0100 Subject: [PATCH 12/15] Rename pn_message_type string mapping --- pubnub/models/consumer/history.py | 57 ++++++++++--------- pubnub/models/consumer/message_type.py | 12 ++-- tests/integrational/asyncio/test_heartbeat.py | 3 - 3 files changed, 35 insertions(+), 37 deletions(-) diff --git a/pubnub/models/consumer/history.py b/pubnub/models/consumer/history.py index f66fab9c..f4338289 100644 --- a/pubnub/models/consumer/history.py +++ b/pubnub/models/consumer/history.py @@ -73,29 +73,7 @@ def from_json(cls, json_input, include_message_actions=False, include_message_ty 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 = {} - - if include_message_type: - message.message_type = PNMessageType.from_response( - message_type=item['type'] if 'type' in item.keys() else None, - pn_message_type=item['message_type']) - - if include_space_id: - message.space_id = item['space_id'] - + message = PNFetchMessageItem(item, include_message_actions, include_message_type, include_space_id) channels[key].append(message) return PNFetchMessagesResult( @@ -106,11 +84,34 @@ def from_json(cls, json_input, include_message_actions=False, include_message_ty 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_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: + self.message_type = PNMessageType.from_response( + message_type=item['type'] if 'type' in item.keys() else None, + pn_message_type=item['message_type']) + + 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/message_type.py b/pubnub/models/consumer/message_type.py index ea6b3aa5..fd538b00 100644 --- a/pubnub/models/consumer/message_type.py +++ b/pubnub/models/consumer/message_type.py @@ -2,12 +2,12 @@ class PNMessageType: pn_message_type: str = None message_type: str = None _type_mapping = { - 'None': 'message', - '0': 'message', - '1': 'signal', - '2': 'object', - '3': 'message_action', - '4': 'file', + 'None': 'pn_message', + '0': 'pn_message', + '1': 'pn_signal', + '2': 'pn_object', + '3': 'pn_message_action', + '4': 'pn_file', } def __init__(self, message_type: str = None) -> None: diff --git a/tests/integrational/asyncio/test_heartbeat.py b/tests/integrational/asyncio/test_heartbeat.py index 86838ee5..a66a284d 100644 --- a/tests/integrational/asyncio/test_heartbeat.py +++ b/tests/integrational/asyncio/test_heartbeat.py @@ -77,6 +77,3 @@ async def test_timeout_event_on_broken_heartbeat(event_loop): await pubnub.stop() await pubnub_listener.stop() - - - From d047c5f5700968ea7548bc05453115336ce6a5fa Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Fri, 3 Mar 2023 14:06:13 +0100 Subject: [PATCH 13/15] add feature files to .gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) 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 From 0ea2561cd7f437484945b07e0e59acbb7e66ece2 Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Wed, 8 Mar 2023 16:21:49 +0100 Subject: [PATCH 14/15] Fixed tests --- .../file_operations/publish_file_message.py | 6 +- pubnub/endpoints/file_operations/send_file.py | 8 +- pubnub/models/consumer/message_type.py | 2 +- .../fetch_messages/include_message_type.json | 120 + .../fetch_messages/include_meta.json | 72 +- .../fetch_messages/include_uuid.json | 72 +- .../fetch_messages/max_100_single.json | 2454 ++++----- .../fetch_messages/max_25_multiple.json | 4898 ++++++++--------- .../fetch_messages/max_25_with_actions.json | 2464 ++++----- .../native_sync/test_fetch_messages.py | 7 +- 10 files changed, 5111 insertions(+), 4992 deletions(-) create mode 100644 tests/integrational/fixtures/native_sync/fetch_messages/include_message_type.json diff --git a/pubnub/endpoints/file_operations/publish_file_message.py b/pubnub/endpoints/file_operations/publish_file_message.py index a68aa841..2097dd98 100644 --- a/pubnub/endpoints/file_operations/publish_file_message.py +++ b/pubnub/endpoints/file_operations/publish_file_message.py @@ -58,7 +58,7 @@ def message_type(self, message_type: Union[PNMessageType, str]): return self def space_id(self, space_id): - self._space_id = str(space_id) + self._space_id = space_id return self def _encrypt_message(self, message): @@ -99,10 +99,10 @@ def custom_params(self): "ttl": self._ttl, "store": 1 if self._should_store else 0 }) - if self._message_type is not None: + if self._message_type: params['type'] = str(self._message_type) - if self._space_id is not None: + if self._space_id: params['space-id'] = str(self._space_id) return params diff --git a/pubnub/endpoints/file_operations/send_file.py b/pubnub/endpoints/file_operations/send_file.py index f35d881e..d0be79e8 100644 --- a/pubnub/endpoints/file_operations/send_file.py +++ b/pubnub/endpoints/file_operations/send_file.py @@ -73,11 +73,11 @@ def is_compressable(self): def custom_params(self): params = {} - if self._message_type is not None: + if self._message_type: params['type'] = str(self._message_type) - if self._space_id is not None: - params['space-id'] = str(self._space_id) + if self._space_id: + params['space-id'] = self._space_id return params @@ -125,7 +125,7 @@ def message_type(self, message_type: Union[PNMessageType, str]): return self def space_id(self, space_id): - self._space_id = str(space_id) + self._space_id = space_id return self def create_response(self, envelope, data=None): diff --git a/pubnub/models/consumer/message_type.py b/pubnub/models/consumer/message_type.py index fd538b00..6ef30e24 100644 --- a/pubnub/models/consumer/message_type.py +++ b/pubnub/models/consumer/message_type.py @@ -21,7 +21,7 @@ def from_response(message_type: str = None, pn_message_type: str = None): return PNMessageType(message_type).set_pn_message_type(pn_message_type) def __str__(self) -> str: - return self.message_type if self.message_type is not None else str(self.pn_message_type) + return self.message_type if self.message_type else str(self.pn_message_type) def toJSON(self) -> str: return str(self) 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_meta.json b/tests/integrational/fixtures/native_sync/fetch_messages/include_meta.json index b229352a..1913fbcd 100644 --- a/tests/integrational/fixtures/native_sync/fetch_messages/include_meta.json +++ b/tests/integrational/fixtures/native_sync/fetch_messages/include_meta.json @@ -27,30 +27,30 @@ "message": "OK" }, "headers": { + "Access-Control-Allow-Origin": [ + "*" + ], "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 07 Feb 2023 13:36:58 GMT" - ], "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" - ], - "Access-Control-Allow-Origin": [ - "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757770188780189\"]" + "string": "[1,\"Sent\",\"16782839273993377\"]" } } }, @@ -80,37 +80,37 @@ "message": "OK" }, "headers": { + "Access-Control-Allow-Origin": [ + "*" + ], "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 07 Feb 2023 13:36:58 GMT" - ], "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" - ], - "Access-Control-Allow-Origin": [ - "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757770189120588\"]" + "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&max=25", + "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": [ @@ -133,39 +133,39 @@ "message": "OK" }, "headers": { + "Access-Control-Allow-Origin": [ + "*" + ], + "Transfer-Encoding": [ + "chunked" + ], "Connection": [ "keep-alive" ], "Content-Encoding": [ "gzip" ], - "Cache-Control": [ - "no-cache" - ], - "Access-Control-Allow-Credentials": [ - "true" - ], - "Date": [ - "Tue, 07 Feb 2023 13:37:08 GMT" - ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" ], + "Date": [ + "Wed, 08 Mar 2023 13:58:47 GMT" + ], "Access-Control-Allow-Methods": [ "GET, POST, DELETE, OPTIONS" ], - "Access-Control-Allow-Origin": [ - "*" - ], "Age": [ "0" ], - "Transfer-Encoding": [ - "chunked" + "Access-Control-Allow-Credentials": [ + "true" + ], + "Cache-Control": [ + "no-cache" ] }, "body": { - "binary": "H4sIAAAAAAAAA5SOwQqDQAxEf0VydkEFu2t/pRRJJa2LdpVNPIj4783aHnpsL4HMTPJmAxaUheGcVUWRZ9D1GAKNSdjgTtL15knM+CA22ImfAqsgaCpNXDb4mLpAT+thgb4Rr6FpoJCM8mRra21ROmedziYlPoetrDNpKCzjeKiCum3g2UjvUw0Y4sKymiHiDfY9V/M/aFNWRe3cD9BENG/ojBJ9NyjwqkigGKfYfnHTt0PUhnccmfYXAAAA//8DAJSWFOFLAQAA" + "binary": "H4sIAAAAAAAAA6RPSwqDQAy9SsnaAT+gY69SiqQS66AdyyQuRLx7M9aFy0J3ycv7ZQUWlJnhesnTNLlA26P3NEZghY6k7c2LmPFJbLAVN3lWQNDkyritIMubdAJQ7UGMa0/LTouwOBVMA/l4yMrK5qWtyswWNiuK7CRsDjM/j+NuJ6iSFRwb6V2sBEOYWRYzBHzAtiV6/KNAlVe2rn8oENPNt8AbJbh20PC7xgOFMIXm9Hh020Ft2+HItH0AAAD//wMAQWkka2MBAAA=" } } } diff --git a/tests/integrational/fixtures/native_sync/fetch_messages/include_uuid.json b/tests/integrational/fixtures/native_sync/fetch_messages/include_uuid.json index cc624c8b..aedea287 100644 --- a/tests/integrational/fixtures/native_sync/fetch_messages/include_uuid.json +++ b/tests/integrational/fixtures/native_sync/fetch_messages/include_uuid.json @@ -27,30 +27,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:46:02 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:10 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603503822599\"]" + "string": "[1,\"Sent\",\"16782687621997385\"]" } } }, @@ -80,37 +80,37 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:46:02 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:10 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603504156501\"]" + "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_uuid=true&max=25", + "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": [ @@ -136,36 +136,36 @@ "Age": [ "0" ], - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Cache-Control": [ + "no-cache" ], "Access-Control-Allow-Credentials": [ "true" ], - "Connection": [ - "keep-alive" - ], "Date": [ - "Tue, 07 Feb 2023 08:59:11 GMT" + "Wed, 08 Mar 2023 09:46:03 GMT" ], - "Cache-Control": [ - "no-cache" - ], - "Access-Control-Allow-Origin": [ - "*" + "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": "H4sIAAAAAAAAA5SOwQqDMBBEf0X2bCDGRmt/pRQJdq3SGMVNDiL+ezfioZRS6HFnZufNCuSNDwSXREmZJtB0xjm0UVihRd90YkAi80ASpvH96EiE0N/Zv65wWHxAh8tuiAy4xvcD+vGJLlpZUeqykLmW+VkpXVUxcbzWfpmQQy5Yy+pR/UmOMhdvKY/6xlQ/mKdMF1ruq/5nKthuTAWc53Gu39ARuIu8vTWWcHsBAAD//wMAkkFIDEsBAAA=" + "binary": "H4sIAAAAAAAAA5SPTQqDMBCFryKzNqCxauxVSpFgxyqNUcxkIeLdO7EuShel3Q3fG97PCo40eQfnSCZJHEHTaWvRBLBCi9R0YkDn9B2d0A31o3XC+/7G+mWFQ6ppmZCJ9cawx0EZQIfL/i5SYIH6AWl8oA1SWpRKFqosZFpVZaby/eNlBOE+Yj5bBMx2W8wFf8+XX/LlKc8qpf7Jl7BduQHgPI9z/TY4mOyQJ7baONyeAAAA//8DANaM4J5jAQAA" } } } 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 index 256297cb..1467bf1a 100644 --- a/tests/integrational/fixtures/native_sync/fetch_messages/max_100_single.json +++ b/tests/integrational/fixtures/native_sync/fetch_messages/max_100_single.json @@ -27,11 +27,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:04 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -39,18 +42,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602244713960\"]" + "string": "[1,\"Sent\",\"16782687382154720\"]" } } }, @@ -80,11 +80,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:04 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -92,18 +95,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602245103086\"]" + "string": "[1,\"Sent\",\"16782687382579630\"]" } } }, @@ -133,11 +133,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:04 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -145,18 +148,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602245526918\"]" + "string": "[1,\"Sent\",\"16782687382950094\"]" } } }, @@ -186,11 +186,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:04 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -198,18 +201,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602245885616\"]" + "string": "[1,\"Sent\",\"16782687383305718\"]" } } }, @@ -239,11 +239,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:04 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -251,18 +254,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602246268024\"]" + "string": "[1,\"Sent\",\"16782687383660635\"]" } } }, @@ -292,11 +292,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:04 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -304,18 +307,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602246647010\"]" + "string": "[1,\"Sent\",\"16782687384043774\"]" } } }, @@ -345,11 +345,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:04 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -357,18 +360,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602247032440\"]" + "string": "[1,\"Sent\",\"16782687384413041\"]" } } }, @@ -398,11 +398,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:04 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -410,18 +413,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602247421345\"]" + "string": "[1,\"Sent\",\"16782687384782110\"]" } } }, @@ -451,11 +451,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:04 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -463,18 +466,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602247804192\"]" + "string": "[1,\"Sent\",\"16782687385142568\"]" } } }, @@ -504,11 +504,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:04 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -516,18 +519,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602248183562\"]" + "string": "[1,\"Sent\",\"16782687385524442\"]" } } }, @@ -557,11 +557,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:04 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -569,18 +572,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602248569417\"]" + "string": "[1,\"Sent\",\"16782687385891506\"]" } } }, @@ -610,11 +610,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:04 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -622,18 +625,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602248944444\"]" + "string": "[1,\"Sent\",\"16782687386258959\"]" } } }, @@ -663,11 +663,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:04 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -675,18 +678,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602249349249\"]" + "string": "[1,\"Sent\",\"16782687386632337\"]" } } }, @@ -716,11 +716,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:04 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -728,18 +731,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602249733784\"]" + "string": "[1,\"Sent\",\"16782687387011468\"]" } } }, @@ -769,11 +769,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -781,18 +784,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602250129446\"]" + "string": "[1,\"Sent\",\"16782687387379536\"]" } } }, @@ -822,11 +822,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -834,18 +837,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602250497787\"]" + "string": "[1,\"Sent\",\"16782687387761350\"]" } } }, @@ -875,11 +875,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -887,18 +890,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602250869217\"]" + "string": "[1,\"Sent\",\"16782687388130121\"]" } } }, @@ -928,11 +928,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -940,18 +943,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602251282653\"]" + "string": "[1,\"Sent\",\"16782687388513538\"]" } } }, @@ -981,11 +981,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -993,18 +996,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602251677823\"]" + "string": "[1,\"Sent\",\"16782687388895730\"]" } } }, @@ -1034,11 +1034,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1046,18 +1049,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602252057298\"]" + "string": "[1,\"Sent\",\"16782687389262790\"]" } } }, @@ -1087,11 +1087,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:38 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1099,18 +1102,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602252443280\"]" + "string": "[1,\"Sent\",\"16782687389652874\"]" } } }, @@ -1140,11 +1140,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1152,18 +1155,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602252854323\"]" + "string": "[1,\"Sent\",\"16782687390024629\"]" } } }, @@ -1193,11 +1193,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1205,18 +1208,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602253305357\"]" + "string": "[1,\"Sent\",\"16782687390407506\"]" } } }, @@ -1246,11 +1246,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1258,18 +1261,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602253701152\"]" + "string": "[1,\"Sent\",\"16782687390785595\"]" } } }, @@ -1299,11 +1299,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1311,18 +1314,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602254163160\"]" + "string": "[1,\"Sent\",\"16782687391156657\"]" } } }, @@ -1352,11 +1352,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1364,18 +1367,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602254633210\"]" + "string": "[1,\"Sent\",\"16782687391525496\"]" } } }, @@ -1405,11 +1405,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1417,18 +1420,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602255027640\"]" + "string": "[1,\"Sent\",\"16782687391930545\"]" } } }, @@ -1458,11 +1458,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1470,18 +1473,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602255471249\"]" + "string": "[1,\"Sent\",\"16782687392322887\"]" } } }, @@ -1511,11 +1511,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1523,18 +1526,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602255896532\"]" + "string": "[1,\"Sent\",\"16782687392728348\"]" } } }, @@ -1564,11 +1564,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1576,18 +1579,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602256397054\"]" + "string": "[1,\"Sent\",\"16782687393146130\"]" } } }, @@ -1617,11 +1617,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1629,18 +1632,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602256802331\"]" + "string": "[1,\"Sent\",\"16782687393543094\"]" } } }, @@ -1670,11 +1670,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1682,18 +1685,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602257207582\"]" + "string": "[1,\"Sent\",\"16782687393969948\"]" } } }, @@ -1723,11 +1723,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1735,18 +1738,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602257661355\"]" + "string": "[1,\"Sent\",\"16782687394348209\"]" } } }, @@ -1776,11 +1776,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1788,18 +1791,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602258066613\"]" + "string": "[1,\"Sent\",\"16782687394733167\"]" } } }, @@ -1829,11 +1829,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1841,18 +1844,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602258510330\"]" + "string": "[1,\"Sent\",\"16782687395135694\"]" } } }, @@ -1882,11 +1882,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1894,18 +1897,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602258932983\"]" + "string": "[1,\"Sent\",\"16782687395517613\"]" } } }, @@ -1935,11 +1935,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -1947,18 +1950,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602259362547\"]" + "string": "[1,\"Sent\",\"16782687395899545\"]" } } }, @@ -1988,11 +1988,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:05 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2000,18 +2003,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602259778548\"]" + "string": "[1,\"Sent\",\"16782687396290561\"]" } } }, @@ -2041,11 +2041,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2053,18 +2056,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602260222755\"]" + "string": "[1,\"Sent\",\"16782687396673168\"]" } } }, @@ -2094,11 +2094,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2106,18 +2109,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602260623768\"]" + "string": "[1,\"Sent\",\"16782687397067069\"]" } } }, @@ -2147,11 +2147,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2159,18 +2162,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602261032200\"]" + "string": "[1,\"Sent\",\"16782687397462695\"]" } } }, @@ -2200,11 +2200,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2212,18 +2215,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602261434421\"]" + "string": "[1,\"Sent\",\"16782687397855089\"]" } } }, @@ -2253,11 +2253,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2265,18 +2268,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602261864893\"]" + "string": "[1,\"Sent\",\"16782687398255408\"]" } } }, @@ -2306,11 +2306,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2318,18 +2321,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602262296320\"]" + "string": "[1,\"Sent\",\"16782687398638271\"]" } } }, @@ -2359,11 +2359,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2371,18 +2374,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602262698601\"]" + "string": "[1,\"Sent\",\"16782687399048691\"]" } } }, @@ -2412,11 +2412,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2424,18 +2427,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602263103168\"]" + "string": "[1,\"Sent\",\"16782687399543093\"]" } } }, @@ -2465,11 +2465,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:39 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2477,18 +2480,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602263524309\"]" + "string": "[1,\"Sent\",\"16782687399988252\"]" } } }, @@ -2518,11 +2518,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2530,18 +2533,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602263966645\"]" + "string": "[1,\"Sent\",\"16782687400405788\"]" } } }, @@ -2571,11 +2571,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2583,18 +2586,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602264389663\"]" + "string": "[1,\"Sent\",\"16782687400814396\"]" } } }, @@ -2624,11 +2624,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2636,18 +2639,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602264819469\"]" + "string": "[1,\"Sent\",\"16782687401237801\"]" } } }, @@ -2677,11 +2677,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2689,18 +2692,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602265236028\"]" + "string": "[1,\"Sent\",\"16782687401630647\"]" } } }, @@ -2730,11 +2730,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2742,18 +2745,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602265663435\"]" + "string": "[1,\"Sent\",\"16782687402022586\"]" } } }, @@ -2783,11 +2783,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2795,18 +2798,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602266083630\"]" + "string": "[1,\"Sent\",\"16782687402415502\"]" } } }, @@ -2836,11 +2836,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2848,18 +2851,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602266487285\"]" + "string": "[1,\"Sent\",\"16782687402820354\"]" } } }, @@ -2889,11 +2889,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2901,18 +2904,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602266919129\"]" + "string": "[1,\"Sent\",\"16782687403225665\"]" } } }, @@ -2942,11 +2942,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -2954,18 +2957,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602267347114\"]" + "string": "[1,\"Sent\",\"16782687403643996\"]" } } }, @@ -2995,11 +2995,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3007,18 +3010,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602267799358\"]" + "string": "[1,\"Sent\",\"16782687404051007\"]" } } }, @@ -3048,11 +3048,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3060,18 +3063,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602268204471\"]" + "string": "[1,\"Sent\",\"16782687404454362\"]" } } }, @@ -3101,11 +3101,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3113,18 +3116,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602268774930\"]" + "string": "[1,\"Sent\",\"16782687404866846\"]" } } }, @@ -3154,11 +3154,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3166,18 +3169,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602269206719\"]" + "string": "[1,\"Sent\",\"16782687405291682\"]" } } }, @@ -3207,11 +3207,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:06 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3219,18 +3222,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602269623615\"]" + "string": "[1,\"Sent\",\"16782687405682971\"]" } } }, @@ -3260,11 +3260,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3272,18 +3275,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602270039289\"]" + "string": "[1,\"Sent\",\"16782687406080137\"]" } } }, @@ -3313,11 +3313,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3325,18 +3328,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602270459028\"]" + "string": "[1,\"Sent\",\"16782687406483808\"]" } } }, @@ -3366,11 +3366,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3378,18 +3381,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602270893929\"]" + "string": "[1,\"Sent\",\"16782687406876154\"]" } } }, @@ -3419,11 +3419,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3431,18 +3434,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602271320457\"]" + "string": "[1,\"Sent\",\"16782687407280175\"]" } } }, @@ -3472,11 +3472,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:40 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3484,18 +3487,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602271772497\"]" + "string": "[1,\"Sent\",\"16782687409615826\"]" } } }, @@ -3525,11 +3525,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3537,18 +3540,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602272181062\"]" + "string": "[1,\"Sent\",\"16782687410019314\"]" } } }, @@ -3578,11 +3578,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3590,18 +3593,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602272581029\"]" + "string": "[1,\"Sent\",\"16782687410423072\"]" } } }, @@ -3631,11 +3631,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3643,18 +3646,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602273006641\"]" + "string": "[1,\"Sent\",\"16782687410815868\"]" } } }, @@ -3684,11 +3684,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3696,18 +3699,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602273449208\"]" + "string": "[1,\"Sent\",\"16782687411219674\"]" } } }, @@ -3737,11 +3737,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3749,18 +3752,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602273887401\"]" + "string": "[1,\"Sent\",\"16782687411620801\"]" } } }, @@ -3790,11 +3790,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3802,18 +3805,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602274332503\"]" + "string": "[1,\"Sent\",\"16782687412024912\"]" } } }, @@ -3843,11 +3843,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3855,18 +3858,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602274750797\"]" + "string": "[1,\"Sent\",\"16782687412425981\"]" } } }, @@ -3896,11 +3896,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3908,18 +3911,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602275156302\"]" + "string": "[1,\"Sent\",\"16782687412835415\"]" } } }, @@ -3949,11 +3949,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -3961,18 +3964,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602275586734\"]" + "string": "[1,\"Sent\",\"16782687413240252\"]" } } }, @@ -4002,11 +4002,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4014,18 +4017,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602276022603\"]" + "string": "[1,\"Sent\",\"16782687413660817\"]" } } }, @@ -4055,11 +4055,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4067,18 +4070,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602276448859\"]" + "string": "[1,\"Sent\",\"16782687414063285\"]" } } }, @@ -4108,11 +4108,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4120,18 +4123,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602276891146\"]" + "string": "[1,\"Sent\",\"16782687414470714\"]" } } }, @@ -4161,11 +4161,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4173,18 +4176,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602277318899\"]" + "string": "[1,\"Sent\",\"16782687414885589\"]" } } }, @@ -4214,11 +4214,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4226,18 +4229,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602277767337\"]" + "string": "[1,\"Sent\",\"16782687415298443\"]" } } }, @@ -4267,11 +4267,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4279,18 +4282,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602278181158\"]" + "string": "[1,\"Sent\",\"16782687415726726\"]" } } }, @@ -4320,11 +4320,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4332,18 +4335,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602278608243\"]" + "string": "[1,\"Sent\",\"16782687416138020\"]" } } }, @@ -4373,11 +4373,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4385,18 +4388,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602279062390\"]" + "string": "[1,\"Sent\",\"16782687416553285\"]" } } }, @@ -4426,11 +4426,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4438,18 +4441,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602279499368\"]" + "string": "[1,\"Sent\",\"16782687416965707\"]" } } }, @@ -4479,11 +4479,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:07 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4491,18 +4494,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602279952203\"]" + "string": "[1,\"Sent\",\"16782687417394831\"]" } } }, @@ -4532,11 +4532,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4544,18 +4547,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602280395048\"]" + "string": "[1,\"Sent\",\"16782687417824460\"]" } } }, @@ -4585,11 +4585,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4597,18 +4600,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602280838629\"]" + "string": "[1,\"Sent\",\"16782687418254308\"]" } } }, @@ -4638,11 +4638,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4650,18 +4653,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602281262256\"]" + "string": "[1,\"Sent\",\"16782687418684657\"]" } } }, @@ -4691,11 +4691,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4703,18 +4706,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602281686623\"]" + "string": "[1,\"Sent\",\"16782687419104536\"]" } } }, @@ -4744,11 +4744,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4756,18 +4759,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602282143066\"]" + "string": "[1,\"Sent\",\"16782687419512826\"]" } } }, @@ -4797,11 +4797,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:41 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4809,18 +4812,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602282574773\"]" + "string": "[1,\"Sent\",\"16782687419938052\"]" } } }, @@ -4850,11 +4850,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4862,18 +4865,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602283039113\"]" + "string": "[1,\"Sent\",\"16782687420360575\"]" } } }, @@ -4903,11 +4903,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4915,18 +4918,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602283500515\"]" + "string": "[1,\"Sent\",\"16782687420780540\"]" } } }, @@ -4956,11 +4956,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -4968,18 +4971,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602283961667\"]" + "string": "[1,\"Sent\",\"16782687421208323\"]" } } }, @@ -5009,11 +5009,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5021,18 +5024,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602284418440\"]" + "string": "[1,\"Sent\",\"16782687421634499\"]" } } }, @@ -5062,11 +5062,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5074,18 +5077,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602284879280\"]" + "string": "[1,\"Sent\",\"16782687422084352\"]" } } }, @@ -5115,11 +5115,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5127,18 +5130,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602285303959\"]" + "string": "[1,\"Sent\",\"16782687422500319\"]" } } }, @@ -5168,11 +5168,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5180,18 +5183,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602285723406\"]" + "string": "[1,\"Sent\",\"16782687422932843\"]" } } }, @@ -5221,11 +5221,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5233,18 +5236,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602286177524\"]" + "string": "[1,\"Sent\",\"16782687423363245\"]" } } }, @@ -5274,11 +5274,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5286,18 +5289,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602286631633\"]" + "string": "[1,\"Sent\",\"16782687423788397\"]" } } }, @@ -5327,11 +5327,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5339,18 +5342,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602287097820\"]" + "string": "[1,\"Sent\",\"16782687424225094\"]" } } }, @@ -5380,11 +5380,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5392,18 +5395,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602287553389\"]" + "string": "[1,\"Sent\",\"16782687424656849\"]" } } }, @@ -5433,11 +5433,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5445,18 +5448,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602288026828\"]" + "string": "[1,\"Sent\",\"16782687425102350\"]" } } }, @@ -5486,11 +5486,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5498,18 +5501,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602288513674\"]" + "string": "[1,\"Sent\",\"16782687425531070\"]" } } }, @@ -5539,11 +5539,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5551,18 +5554,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602288942486\"]" + "string": "[1,\"Sent\",\"16782687425958002\"]" } } }, @@ -5592,11 +5592,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5604,18 +5607,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602289359145\"]" + "string": "[1,\"Sent\",\"16782687426417500\"]" } } }, @@ -5645,11 +5645,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:08 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5657,18 +5660,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602289818826\"]" + "string": "[1,\"Sent\",\"16782687426848996\"]" } } }, @@ -5698,11 +5698,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:09 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5710,18 +5713,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602290291137\"]" + "string": "[1,\"Sent\",\"16782687427277509\"]" } } }, @@ -5751,11 +5751,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:09 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5763,18 +5766,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602290739349\"]" + "string": "[1,\"Sent\",\"16782687427716209\"]" } } }, @@ -5804,11 +5804,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:09 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5816,18 +5819,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602291201014\"]" + "string": "[1,\"Sent\",\"16782687428246639\"]" } } }, @@ -5857,11 +5857,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:09 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5869,18 +5872,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602291654210\"]" + "string": "[1,\"Sent\",\"16782687428723385\"]" } } }, @@ -5910,11 +5910,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:09 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5922,18 +5925,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602292136335\"]" + "string": "[1,\"Sent\",\"16782687429170258\"]" } } }, @@ -5963,11 +5963,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:09 GMT" + "Wed, 08 Mar 2023 09:45:42 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -5975,18 +5978,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602292620727\"]" + "string": "[1,\"Sent\",\"16782687429606500\"]" } } }, @@ -6016,11 +6016,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:09 GMT" + "Wed, 08 Mar 2023 09:45:43 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -6028,18 +6031,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602293105271\"]" + "string": "[1,\"Sent\",\"16782687430037757\"]" } } }, @@ -6069,11 +6069,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:09 GMT" + "Wed, 08 Mar 2023 09:45:43 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -6081,18 +6084,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602293596162\"]" + "string": "[1,\"Sent\",\"16782687430478006\"]" } } }, @@ -6122,11 +6122,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:09 GMT" + "Wed, 08 Mar 2023 09:45:43 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -6134,18 +6137,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602294067987\"]" + "string": "[1,\"Sent\",\"16782687430916135\"]" } } }, @@ -6175,11 +6175,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:09 GMT" + "Wed, 08 Mar 2023 09:45:43 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -6187,18 +6190,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602294541800\"]" + "string": "[1,\"Sent\",\"16782687431358834\"]" } } }, @@ -6228,11 +6228,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:09 GMT" + "Wed, 08 Mar 2023 09:45:43 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -6240,18 +6243,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602295028741\"]" + "string": "[1,\"Sent\",\"16782687431799027\"]" } } }, @@ -6281,11 +6281,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:09 GMT" + "Wed, 08 Mar 2023 09:45:43 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -6293,18 +6296,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602297601261\"]" + "string": "[1,\"Sent\",\"16782687432256186\"]" } } }, @@ -6334,11 +6334,14 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:09 GMT" + "Wed, 08 Mar 2023 09:45:43 GMT" + ], + "Content-Length": [ + "30" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" @@ -6346,18 +6349,15 @@ "Connection": [ "keep-alive" ], - "Cache-Control": [ - "no-cache" - ], - "Content-Length": [ - "30" - ], "Access-Control-Allow-Methods": [ "GET" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "string": "[1,\"Sent\",\"16757602298100023\"]" + "string": "[1,\"Sent\",\"16782687432700022\"]" } } }, @@ -6387,46 +6387,46 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Age": [ + "0" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:10 GMT" + "Wed, 08 Mar 2023 09:45:44 GMT" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" ], - "Connection": [ - "keep-alive" - ], "Server": [ "Pubnub Storage" ], "Content-Encoding": [ "gzip" ], - "Cache-Control": [ - "no-cache" - ], - "Age": [ - "0" - ], "Transfer-Encoding": [ "chunked" ], + "Connection": [ + "keep-alive" + ], "Access-Control-Allow-Methods": [ "GET, POST, DELETE, OPTIONS" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "binary": "H4sIAAAAAAAAA0TPS0oEQBAE0bvMeoTKrv9ZBpeCV/D2ChrtLqnFC+r1enx+fL0dezx/hxiH4YxgJKMYzRjG/g1HdmRHdmRHdmRHdmRHduRADuRADuRADuRADuRADuRETuRETuRETuRETuRETuRCLuRCLuRCLuRCLuRCLuRGbuRGbuRGbuRGbuRGbuRBHuRBHuRBHuRBHuRBHuRFXuRFXuRFXuRFXuRFXmQZtAxbBi5Dl8HL8GUEZBRkJGS3odvQbeg2dBu6Dd2GbkO3odvQPt6fqs4uOydPhJ+x/8vOz4N2/P0bAAD//wMAy0SMBL8DAAA=" + "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&max=100", + "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": [ @@ -6449,39 +6449,39 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Origin": [ - "*" + "Age": [ + "0" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Tue, 07 Feb 2023 08:57:10 GMT" + "Wed, 08 Mar 2023 09:45:44 GMT" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" ], - "Connection": [ - "keep-alive" - ], "Server": [ "Pubnub Storage" ], "Content-Encoding": [ "gzip" ], - "Cache-Control": [ - "no-cache" - ], - "Age": [ - "0" - ], "Transfer-Encoding": [ "chunked" ], + "Connection": [ + "keep-alive" + ], "Access-Control-Allow-Methods": [ "GET, POST, DELETE, OPTIONS" + ], + "Access-Control-Allow-Origin": [ + "*" ] }, "body": { - "binary": "H4sIAAAAAAAAA4yZyW5UMRBFfwW9dSK5bNfg/ApCKEIPgggBpZsFivLvXJthg0u6i0jppPu+ctWpyf1yXK731x+X4+5NLeXmzXE+P397xquP94+X8+/r91/Py+X+04m/Hwf++OHh/unpfJyfejk+ntcPD7d/3nG5xe9y3L19Of595ng4f97Wctwc189fz+u3L+fTcXeIubqVWrX23mrM///5yPvrz+941tOPx8fXm/+EJBcKhVJjhWoq1FrRps4KzSfuj9a8iOh8EHW0ngp1sSZG+0hzIWutCi1kqZCW6tZpoenMvY+0u9Q+8H/KR5ELxTBttLPnE/cWWRtedAaDsahNHyRCUWprE1hKKCfba3EN9mjLB3uL3EyaTjwoi3Kyo9iUYoVyskOlIN9YoZzsGK2OoC3KyR7NKqBkLcrJHu6oSBNYytkp2bNKVuejlpJtxWpzYy1a2b3lyBCzioZBHq2nZJv01ntlU6SnNdskrAMB1qKUbKt1WFvtiolaT8m2aiOs0EdLyUblLyj+dNRSsq2h17Yy8aCOlpKNAons72wZWSmw56g3FG2jozZNT4RCRjf2aDrJ3Qtpbcg31tk6w5sI4Vy9sT5aQ8JeyEo0oyuk5mQjQbwGbVFOtg0ZUmln52R7Q/MXttNqTrb7GE3pqOVkRy0dNpEpsp64j1q498FHbTpzLzRqMRfW2WtGTIRQ/E3Y8Nv0wVbIS2mjBm1RWrO9dB18rq0ykViEyj9oIC0l2wWVv9OTv6Vku7hjqGWHCEvJ9iohaNskkJaS7VUhxPto5tLe2a1g9lstnekiqyYnQr0DbjZpveQWRXinO+3K7r1FHcuRFrYdeU52dy1Oh9/Tmu0qitrPht9zslXDUG5Jjjwne06jxvsoJ9t6j1C2jHhOtsVAE5kPYoD0nGxvEjFoi+Yb9xy5w9eNzf5197EXCmS/0H0tJLUIk2hg+CN9tFbNvUVj7hBj5iLj7LWPJUIdLZueaiMnewzFLkIfLSU70Na00PtapGQHBrYwutRGSnZIxTqyxh7K2SnZgfXBEDc2ainZUbGwofyTQouTbfijqndfhY852kjJjoawCX0TMdKaHU1LQbllj5bW7MB2JLY6MXW0lOzoXfDD5trIycbgj4mNFsrJ1ultumavBrgPv3ptvdAc5WQbJi2stWzUcrKxruGSlU0RWZcf+7N5GY49gjRJ1uCSKKk2bMi0Ug43biIt6LUWFw545t4mXNg1W4MGQ7eUHO8YvfZVRjmlnG/sfkPo+wjM0+npBjpuVJZLKWntxmIzyxI7A8iag7ceH8XbaPQNuawLnr2S1ALc2GSR9T1BomSKazuacUnr96jAqdH3JCIp4wPNsnilPb56xv50uHHTSt8C/L7BSJR0NgN2fsesl5E5UC19rFmByhZJGR9d0Vfoy1uRnHF8CYTNa8aWsykt4wNfBWLY4ZVmTdx7HFtuwdcue5vevb7+AgAA//8DALDlww/zHAAA" + "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" } } } 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 index 8248e1f3..c5bd98c8 100644 --- a/tests/integrational/fixtures/native_sync/fetch_messages/max_25_multiple.json +++ b/tests/integrational/fixtures/native_sync/fetch_messages/max_25_multiple.json @@ -27,30 +27,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:50 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603305237175\"]" + "string": "[1,\"Sent\",\"16782687445626416\"]" } } }, @@ -80,30 +80,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:50 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603305584958\"]" + "string": "[1,\"Sent\",\"16782687446026481\"]" } } }, @@ -133,30 +133,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:50 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603305955334\"]" + "string": "[1,\"Sent\",\"16782687446369669\"]" } } }, @@ -186,30 +186,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:50 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603306306611\"]" + "string": "[1,\"Sent\",\"16782687446764754\"]" } } }, @@ -239,30 +239,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:50 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603306663296\"]" + "string": "[1,\"Sent\",\"16782687447136154\"]" } } }, @@ -292,30 +292,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:50 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603307030190\"]" + "string": "[1,\"Sent\",\"16782687447491363\"]" } } }, @@ -345,30 +345,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:44 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:50 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603307397943\"]" + "string": "[1,\"Sent\",\"16782687447864884\"]" } } }, @@ -398,30 +398,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:50 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603307770307\"]" + "string": "[1,\"Sent\",\"16782687450058640\"]" } } }, @@ -451,30 +451,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:50 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603308138181\"]" + "string": "[1,\"Sent\",\"16782687450402792\"]" } } }, @@ -504,30 +504,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:50 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603308516011\"]" + "string": "[1,\"Sent\",\"16782687450753640\"]" } } }, @@ -557,30 +557,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:50 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603308898612\"]" + "string": "[1,\"Sent\",\"16782687451106729\"]" } } }, @@ -610,30 +610,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:50 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603309270340\"]" + "string": "[1,\"Sent\",\"16782687451452843\"]" } } }, @@ -663,30 +663,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:50 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603309652872\"]" + "string": "[1,\"Sent\",\"16782687451808932\"]" } } }, @@ -716,30 +716,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603310041821\"]" + "string": "[1,\"Sent\",\"16782687452189379\"]" } } }, @@ -769,30 +769,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603310458181\"]" + "string": "[1,\"Sent\",\"16782687452564843\"]" } } }, @@ -822,30 +822,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603310828399\"]" + "string": "[1,\"Sent\",\"16782687452934757\"]" } } }, @@ -875,30 +875,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603311201283\"]" + "string": "[1,\"Sent\",\"16782687453293235\"]" } } }, @@ -928,30 +928,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603311577435\"]" + "string": "[1,\"Sent\",\"16782687453656142\"]" } } }, @@ -981,30 +981,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603311970913\"]" + "string": "[1,\"Sent\",\"16782687454020051\"]" } } }, @@ -1034,30 +1034,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603312341438\"]" + "string": "[1,\"Sent\",\"16782687454380146\"]" } } }, @@ -1087,30 +1087,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603312709683\"]" + "string": "[1,\"Sent\",\"16782687454736518\"]" } } }, @@ -1140,30 +1140,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603313081464\"]" + "string": "[1,\"Sent\",\"16782687455091301\"]" } } }, @@ -1193,30 +1193,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603313460419\"]" + "string": "[1,\"Sent\",\"16782687455455576\"]" } } }, @@ -1246,30 +1246,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603313846387\"]" + "string": "[1,\"Sent\",\"16782687455811202\"]" } } }, @@ -1299,30 +1299,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603314223295\"]" + "string": "[1,\"Sent\",\"16782687456193517\"]" } } }, @@ -1352,30 +1352,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603314608675\"]" + "string": "[1,\"Sent\",\"16782687456570145\"]" } } }, @@ -1405,30 +1405,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603314986103\"]" + "string": "[1,\"Sent\",\"16782687456963841\"]" } } }, @@ -1458,30 +1458,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603315355821\"]" + "string": "[1,\"Sent\",\"16782687457350298\"]" } } }, @@ -1511,30 +1511,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603315735846\"]" + "string": "[1,\"Sent\",\"16782687457714311\"]" } } }, @@ -1564,30 +1564,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603316106082\"]" + "string": "[1,\"Sent\",\"16782687458107656\"]" } } }, @@ -1617,30 +1617,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603316503980\"]" + "string": "[1,\"Sent\",\"16782687458480249\"]" } } }, @@ -1670,30 +1670,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603316905898\"]" + "string": "[1,\"Sent\",\"16782687458844253\"]" } } }, @@ -1723,30 +1723,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603317273427\"]" + "string": "[1,\"Sent\",\"16782687459216494\"]" } } }, @@ -1776,30 +1776,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:51 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603317668314\"]" + "string": "[1,\"Sent\",\"16782687459619283\"]" } } }, @@ -1829,30 +1829,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:45 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603320047697\"]" + "string": "[1,\"Sent\",\"16782687459990903\"]" } } }, @@ -1882,30 +1882,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603320455077\"]" + "string": "[1,\"Sent\",\"16782687460350310\"]" } } }, @@ -1935,30 +1935,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603320840284\"]" + "string": "[1,\"Sent\",\"16782687460726101\"]" } } }, @@ -1988,30 +1988,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603321218226\"]" + "string": "[1,\"Sent\",\"16782687461109017\"]" } } }, @@ -2041,30 +2041,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603321624547\"]" + "string": "[1,\"Sent\",\"16782687461482621\"]" } } }, @@ -2094,30 +2094,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603321994012\"]" + "string": "[1,\"Sent\",\"16782687461867223\"]" } } }, @@ -2147,30 +2147,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603322377305\"]" + "string": "[1,\"Sent\",\"16782687462242173\"]" } } }, @@ -2200,30 +2200,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603322782334\"]" + "string": "[1,\"Sent\",\"16782687462616706\"]" } } }, @@ -2253,30 +2253,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603323260961\"]" + "string": "[1,\"Sent\",\"16782687463006271\"]" } } }, @@ -2306,30 +2306,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603323661549\"]" + "string": "[1,\"Sent\",\"16782687463377335\"]" } } }, @@ -2359,30 +2359,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603324054467\"]" + "string": "[1,\"Sent\",\"16782687463744012\"]" } } }, @@ -2412,30 +2412,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603324439577\"]" + "string": "[1,\"Sent\",\"16782687464126620\"]" } } }, @@ -2465,30 +2465,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603324815261\"]" + "string": "[1,\"Sent\",\"16782687464518089\"]" } } }, @@ -2518,30 +2518,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603325198591\"]" + "string": "[1,\"Sent\",\"16782687464889777\"]" } } }, @@ -2571,30 +2571,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603325638059\"]" + "string": "[1,\"Sent\",\"16782687465266894\"]" } } }, @@ -2624,30 +2624,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603326037232\"]" + "string": "[1,\"Sent\",\"16782687465638429\"]" } } }, @@ -2677,30 +2677,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603326448280\"]" + "string": "[1,\"Sent\",\"16782687466023559\"]" } } }, @@ -2730,30 +2730,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603326858011\"]" + "string": "[1,\"Sent\",\"16782687466427417\"]" } } }, @@ -2783,30 +2783,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603327251158\"]" + "string": "[1,\"Sent\",\"16782687466804464\"]" } } }, @@ -2836,30 +2836,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603327656250\"]" + "string": "[1,\"Sent\",\"16782687467186792\"]" } } }, @@ -2889,30 +2889,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603328054719\"]" + "string": "[1,\"Sent\",\"16782687467583072\"]" } } }, @@ -2942,30 +2942,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603328443065\"]" + "string": "[1,\"Sent\",\"16782687467964138\"]" } } }, @@ -2995,30 +2995,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603328857847\"]" + "string": "[1,\"Sent\",\"16782687468345853\"]" } } }, @@ -3048,30 +3048,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603329252722\"]" + "string": "[1,\"Sent\",\"16782687468836811\"]" } } }, @@ -3101,30 +3101,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:52 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603329665647\"]" + "string": "[1,\"Sent\",\"16782687469251095\"]" } } }, @@ -3154,30 +3154,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603330083868\"]" + "string": "[1,\"Sent\",\"16782687469622507\"]" } } }, @@ -3207,30 +3207,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:46 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603330468566\"]" + "string": "[1,\"Sent\",\"16782687469988644\"]" } } }, @@ -3260,30 +3260,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603330865890\"]" + "string": "[1,\"Sent\",\"16782687470380476\"]" } } }, @@ -3313,30 +3313,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603331250505\"]" + "string": "[1,\"Sent\",\"16782687470754513\"]" } } }, @@ -3366,30 +3366,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603331648799\"]" + "string": "[1,\"Sent\",\"16782687471139400\"]" } } }, @@ -3419,30 +3419,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603332058000\"]" + "string": "[1,\"Sent\",\"16782687471524770\"]" } } }, @@ -3472,30 +3472,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603332450488\"]" + "string": "[1,\"Sent\",\"16782687471905479\"]" } } }, @@ -3525,30 +3525,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603332865271\"]" + "string": "[1,\"Sent\",\"16782687472285035\"]" } } }, @@ -3578,30 +3578,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603333256122\"]" + "string": "[1,\"Sent\",\"16782687472690023\"]" } } }, @@ -3631,30 +3631,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603333658369\"]" + "string": "[1,\"Sent\",\"16782687473070598\"]" } } }, @@ -3684,30 +3684,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603334061078\"]" + "string": "[1,\"Sent\",\"16782687473450234\"]" } } }, @@ -3737,30 +3737,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603334452786\"]" + "string": "[1,\"Sent\",\"16782687475821294\"]" } } }, @@ -3790,30 +3790,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603334869754\"]" + "string": "[1,\"Sent\",\"16782687476204038\"]" } } }, @@ -3843,30 +3843,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603335266898\"]" + "string": "[1,\"Sent\",\"16782687476614744\"]" } } }, @@ -3896,30 +3896,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603335686112\"]" + "string": "[1,\"Sent\",\"16782687476998945\"]" } } }, @@ -3949,30 +3949,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603336113796\"]" + "string": "[1,\"Sent\",\"16782687477373780\"]" } } }, @@ -4002,30 +4002,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603336508360\"]" + "string": "[1,\"Sent\",\"16782687477764187\"]" } } }, @@ -4055,30 +4055,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603337695600\"]" + "string": "[1,\"Sent\",\"16782687478141802\"]" } } }, @@ -4108,30 +4108,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603338112705\"]" + "string": "[1,\"Sent\",\"16782687478530431\"]" } } }, @@ -4161,30 +4161,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603338663869\"]" + "string": "[1,\"Sent\",\"16782687478926727\"]" } } }, @@ -4214,30 +4214,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603339105709\"]" + "string": "[1,\"Sent\",\"16782687479368421\"]" } } }, @@ -4267,30 +4267,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:47 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603339493839\"]" + "string": "[1,\"Sent\",\"16782687479760324\"]" } } }, @@ -4320,30 +4320,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:53 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603339915777\"]" + "string": "[1,\"Sent\",\"16782687480163745\"]" } } }, @@ -4373,30 +4373,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603340329202\"]" + "string": "[1,\"Sent\",\"16782687480564474\"]" } } }, @@ -4426,30 +4426,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603340738265\"]" + "string": "[1,\"Sent\",\"16782687480960702\"]" } } }, @@ -4479,30 +4479,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603341173320\"]" + "string": "[1,\"Sent\",\"16782687481377461\"]" } } }, @@ -4532,30 +4532,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603341650449\"]" + "string": "[1,\"Sent\",\"16782687481776507\"]" } } }, @@ -4585,30 +4585,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603342059038\"]" + "string": "[1,\"Sent\",\"16782687482197920\"]" } } }, @@ -4638,30 +4638,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603342452855\"]" + "string": "[1,\"Sent\",\"16782687482597608\"]" } } }, @@ -4691,30 +4691,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603342845854\"]" + "string": "[1,\"Sent\",\"16782687483001892\"]" } } }, @@ -4744,30 +4744,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603343252785\"]" + "string": "[1,\"Sent\",\"16782687483397442\"]" } } }, @@ -4797,30 +4797,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603343756966\"]" + "string": "[1,\"Sent\",\"16782687483803909\"]" } } }, @@ -4850,30 +4850,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603344226594\"]" + "string": "[1,\"Sent\",\"16782687484204236\"]" } } }, @@ -4903,30 +4903,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603344664722\"]" + "string": "[1,\"Sent\",\"16782687484602188\"]" } } }, @@ -4956,30 +4956,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603345093632\"]" + "string": "[1,\"Sent\",\"16782687485006565\"]" } } }, @@ -5009,30 +5009,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603345494990\"]" + "string": "[1,\"Sent\",\"16782687485405965\"]" } } }, @@ -5062,30 +5062,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603345928663\"]" + "string": "[1,\"Sent\",\"16782687485814160\"]" } } }, @@ -5115,30 +5115,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603346336304\"]" + "string": "[1,\"Sent\",\"16782687486238594\"]" } } }, @@ -5168,30 +5168,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603346750656\"]" + "string": "[1,\"Sent\",\"16782687486634382\"]" } } }, @@ -5221,30 +5221,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603347176127\"]" + "string": "[1,\"Sent\",\"16782687487057808\"]" } } }, @@ -5274,30 +5274,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603347608854\"]" + "string": "[1,\"Sent\",\"16782687487471279\"]" } } }, @@ -5327,30 +5327,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603348055881\"]" + "string": "[1,\"Sent\",\"16782687487885573\"]" } } }, @@ -5380,30 +5380,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603348465885\"]" + "string": "[1,\"Sent\",\"16782687488296038\"]" } } }, @@ -5433,30 +5433,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603348910788\"]" + "string": "[1,\"Sent\",\"16782687488703141\"]" } } }, @@ -5486,30 +5486,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603349362531\"]" + "string": "[1,\"Sent\",\"16782687489113944\"]" } } }, @@ -5539,30 +5539,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:54 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603349796525\"]" + "string": "[1,\"Sent\",\"16782687489523847\"]" } } }, @@ -5592,30 +5592,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:48 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603350254964\"]" + "string": "[1,\"Sent\",\"16782687489955306\"]" } } }, @@ -5645,30 +5645,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603350693408\"]" + "string": "[1,\"Sent\",\"16782687490401379\"]" } } }, @@ -5698,30 +5698,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603351138827\"]" + "string": "[1,\"Sent\",\"16782687490825663\"]" } } }, @@ -5751,30 +5751,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603351554797\"]" + "string": "[1,\"Sent\",\"16782687491268567\"]" } } }, @@ -5804,30 +5804,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603351993358\"]" + "string": "[1,\"Sent\",\"16782687491725287\"]" } } }, @@ -5857,30 +5857,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603352401202\"]" + "string": "[1,\"Sent\",\"16782687492181769\"]" } } }, @@ -5910,30 +5910,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603352845932\"]" + "string": "[1,\"Sent\",\"16782687492610871\"]" } } }, @@ -5963,30 +5963,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603353335628\"]" + "string": "[1,\"Sent\",\"16782687493033049\"]" } } }, @@ -6016,30 +6016,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603353778923\"]" + "string": "[1,\"Sent\",\"16782687493466260\"]" } } }, @@ -6069,30 +6069,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603354229189\"]" + "string": "[1,\"Sent\",\"16782687493902289\"]" } } }, @@ -6122,30 +6122,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603354685069\"]" + "string": "[1,\"Sent\",\"16782687494453525\"]" } } }, @@ -6175,30 +6175,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603355146395\"]" + "string": "[1,\"Sent\",\"16782687494905261\"]" } } }, @@ -6228,30 +6228,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603355569752\"]" + "string": "[1,\"Sent\",\"16782687495351863\"]" } } }, @@ -6281,30 +6281,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603356023388\"]" + "string": "[1,\"Sent\",\"16782687495807000\"]" } } }, @@ -6334,30 +6334,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603356452732\"]" + "string": "[1,\"Sent\",\"16782687496262255\"]" } } }, @@ -6387,30 +6387,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603356903197\"]" + "string": "[1,\"Sent\",\"16782687496707390\"]" } } }, @@ -6440,30 +6440,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603357453716\"]" + "string": "[1,\"Sent\",\"16782687497147848\"]" } } }, @@ -6493,30 +6493,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603357901096\"]" + "string": "[1,\"Sent\",\"16782687497609600\"]" } } }, @@ -6546,30 +6546,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603358548444\"]" + "string": "[1,\"Sent\",\"16782687498052406\"]" } } }, @@ -6599,30 +6599,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603359117493\"]" + "string": "[1,\"Sent\",\"16782687498480988\"]" } } }, @@ -6652,30 +6652,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:55 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603359578395\"]" + "string": "[1,\"Sent\",\"16782687498900637\"]" } } }, @@ -6705,30 +6705,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603360041100\"]" + "string": "[1,\"Sent\",\"16782687499319254\"]" } } }, @@ -6758,30 +6758,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:49 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603360486417\"]" + "string": "[1,\"Sent\",\"16782687499741702\"]" } } }, @@ -6811,30 +6811,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603360958009\"]" + "string": "[1,\"Sent\",\"16782687500176198\"]" } } }, @@ -6864,30 +6864,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603361413283\"]" + "string": "[1,\"Sent\",\"16782687500673169\"]" } } }, @@ -6917,30 +6917,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603361885840\"]" + "string": "[1,\"Sent\",\"16782687501103444\"]" } } }, @@ -6970,30 +6970,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603362359573\"]" + "string": "[1,\"Sent\",\"16782687501540125\"]" } } }, @@ -7023,30 +7023,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603362803441\"]" + "string": "[1,\"Sent\",\"16782687501964990\"]" } } }, @@ -7076,30 +7076,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603363275852\"]" + "string": "[1,\"Sent\",\"16782687502404277\"]" } } }, @@ -7129,30 +7129,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603363699917\"]" + "string": "[1,\"Sent\",\"16782687502837525\"]" } } }, @@ -7182,30 +7182,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603366223482\"]" + "string": "[1,\"Sent\",\"16782687503265283\"]" } } }, @@ -7235,30 +7235,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603366657680\"]" + "string": "[1,\"Sent\",\"16782687503696513\"]" } } }, @@ -7288,30 +7288,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603367132924\"]" + "string": "[1,\"Sent\",\"16782687504134769\"]" } } }, @@ -7341,30 +7341,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603367585929\"]" + "string": "[1,\"Sent\",\"16782687504576348\"]" } } }, @@ -7394,30 +7394,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603368071499\"]" + "string": "[1,\"Sent\",\"16782687505009311\"]" } } }, @@ -7447,30 +7447,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603368522358\"]" + "string": "[1,\"Sent\",\"16782687505449875\"]" } } }, @@ -7500,30 +7500,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603368990860\"]" + "string": "[1,\"Sent\",\"16782687505890963\"]" } } }, @@ -7553,30 +7553,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603369452860\"]" + "string": "[1,\"Sent\",\"16782687506324521\"]" } } }, @@ -7606,30 +7606,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:56 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603369919871\"]" + "string": "[1,\"Sent\",\"16782687506764510\"]" } } }, @@ -7659,30 +7659,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603370403460\"]" + "string": "[1,\"Sent\",\"16782687507211423\"]" } } }, @@ -7712,30 +7712,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603370882161\"]" + "string": "[1,\"Sent\",\"16782687507656812\"]" } } }, @@ -7765,30 +7765,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603371382354\"]" + "string": "[1,\"Sent\",\"16782687508097924\"]" } } }, @@ -7818,30 +7818,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603371918160\"]" + "string": "[1,\"Sent\",\"16782687508539939\"]" } } }, @@ -7871,30 +7871,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603372578109\"]" + "string": "[1,\"Sent\",\"16782687508986986\"]" } } }, @@ -7924,30 +7924,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603373061597\"]" + "string": "[1,\"Sent\",\"16782687509432691\"]" } } }, @@ -7977,30 +7977,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:50 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603373639318\"]" + "string": "[1,\"Sent\",\"16782687509876569\"]" } } }, @@ -8030,30 +8030,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603374119848\"]" + "string": "[1,\"Sent\",\"16782687510319000\"]" } } }, @@ -8083,30 +8083,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603374575874\"]" + "string": "[1,\"Sent\",\"16782687510775785\"]" } } }, @@ -8136,30 +8136,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603375063203\"]" + "string": "[1,\"Sent\",\"16782687511225235\"]" } } }, @@ -8189,30 +8189,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603375535882\"]" + "string": "[1,\"Sent\",\"16782687511675100\"]" } } }, @@ -8242,30 +8242,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603376015604\"]" + "string": "[1,\"Sent\",\"16782687512138237\"]" } } }, @@ -8295,30 +8295,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603376494758\"]" + "string": "[1,\"Sent\",\"16782687512599601\"]" } } }, @@ -8348,30 +8348,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603376986306\"]" + "string": "[1,\"Sent\",\"16782687513067281\"]" } } }, @@ -8401,30 +8401,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603377476138\"]" + "string": "[1,\"Sent\",\"16782687513533665\"]" } } }, @@ -8454,30 +8454,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603377970670\"]" + "string": "[1,\"Sent\",\"16782687513983832\"]" } } }, @@ -8507,30 +8507,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603378821194\"]" + "string": "[1,\"Sent\",\"16782687514436679\"]" } } }, @@ -8560,30 +8560,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603379286554\"]" + "string": "[1,\"Sent\",\"16782687514916979\"]" } } }, @@ -8613,30 +8613,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:57 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603379730829\"]" + "string": "[1,\"Sent\",\"16782687515375093\"]" } } }, @@ -8666,30 +8666,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603380266975\"]" + "string": "[1,\"Sent\",\"16782687515829397\"]" } } }, @@ -8719,30 +8719,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603380726336\"]" + "string": "[1,\"Sent\",\"16782687516302990\"]" } } }, @@ -8772,30 +8772,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603381230837\"]" + "string": "[1,\"Sent\",\"16782687516748777\"]" } } }, @@ -8825,30 +8825,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603381691002\"]" + "string": "[1,\"Sent\",\"16782687517216210\"]" } } }, @@ -8878,30 +8878,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603382195215\"]" + "string": "[1,\"Sent\",\"16782687517681290\"]" } } }, @@ -8931,30 +8931,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603382665895\"]" + "string": "[1,\"Sent\",\"16782687518131166\"]" } } }, @@ -8984,30 +8984,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603383172369\"]" + "string": "[1,\"Sent\",\"16782687518583791\"]" } } }, @@ -9037,30 +9037,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603383666800\"]" + "string": "[1,\"Sent\",\"16782687519058419\"]" } } }, @@ -9090,30 +9090,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603384134443\"]" + "string": "[1,\"Sent\",\"16782687519507796\"]" } } }, @@ -9143,30 +9143,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:51 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603384638072\"]" + "string": "[1,\"Sent\",\"16782687519982887\"]" } } }, @@ -9196,30 +9196,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603385262504\"]" + "string": "[1,\"Sent\",\"16782687520454108\"]" } } }, @@ -9249,30 +9249,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603385752590\"]" + "string": "[1,\"Sent\",\"16782687520917521\"]" } } }, @@ -9302,30 +9302,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603386262247\"]" + "string": "[1,\"Sent\",\"16782687521376259\"]" } } }, @@ -9355,30 +9355,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603386732772\"]" + "string": "[1,\"Sent\",\"16782687521833690\"]" } } }, @@ -9408,30 +9408,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603387233878\"]" + "string": "[1,\"Sent\",\"16782687522297993\"]" } } }, @@ -9461,30 +9461,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603387713608\"]" + "string": "[1,\"Sent\",\"16782687522788343\"]" } } }, @@ -9514,30 +9514,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603388223447\"]" + "string": "[1,\"Sent\",\"16782687523254046\"]" } } }, @@ -9567,30 +9567,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603388703059\"]" + "string": "[1,\"Sent\",\"16782687523723986\"]" } } }, @@ -9620,30 +9620,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603389217662\"]" + "string": "[1,\"Sent\",\"16782687524192029\"]" } } }, @@ -9673,30 +9673,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:58 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603389788261\"]" + "string": "[1,\"Sent\",\"16782687524655496\"]" } } }, @@ -9726,30 +9726,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603390288943\"]" + "string": "[1,\"Sent\",\"16782687525119295\"]" } } }, @@ -9779,30 +9779,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603390749034\"]" + "string": "[1,\"Sent\",\"16782687525600986\"]" } } }, @@ -9832,30 +9832,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603391327172\"]" + "string": "[1,\"Sent\",\"16782687526067930\"]" } } }, @@ -9885,30 +9885,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603391793420\"]" + "string": "[1,\"Sent\",\"16782687526549209\"]" } } }, @@ -9938,30 +9938,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603392308319\"]" + "string": "[1,\"Sent\",\"16782687526996406\"]" } } }, @@ -9991,30 +9991,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603392773732\"]" + "string": "[1,\"Sent\",\"16782687527487949\"]" } } }, @@ -10044,30 +10044,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603393273248\"]" + "string": "[1,\"Sent\",\"16782687527993011\"]" } } }, @@ -10097,30 +10097,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603393746556\"]" + "string": "[1,\"Sent\",\"16782687528597206\"]" } } }, @@ -10150,30 +10150,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603394254600\"]" + "string": "[1,\"Sent\",\"16782687529072900\"]" } } }, @@ -10203,30 +10203,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:52 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603394780944\"]" + "string": "[1,\"Sent\",\"16782687529562144\"]" } } }, @@ -10256,30 +10256,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603395293018\"]" + "string": "[1,\"Sent\",\"16782687530038453\"]" } } }, @@ -10309,30 +10309,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603395762846\"]" + "string": "[1,\"Sent\",\"16782687530516349\"]" } } }, @@ -10362,30 +10362,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603396274377\"]" + "string": "[1,\"Sent\",\"16782687531002054\"]" } } }, @@ -10415,30 +10415,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603396782420\"]" + "string": "[1,\"Sent\",\"16782687531506537\"]" } } }, @@ -10468,30 +10468,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603397300641\"]" + "string": "[1,\"Sent\",\"16782687531986534\"]" } } }, @@ -10521,30 +10521,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603397773894\"]" + "string": "[1,\"Sent\",\"16782687532461330\"]" } } }, @@ -10574,30 +10574,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603398287188\"]" + "string": "[1,\"Sent\",\"16782687532959090\"]" } } }, @@ -10627,30 +10627,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603398775057\"]" + "string": "[1,\"Sent\",\"16782687533437096\"]" } } }, @@ -10680,30 +10680,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603399290467\"]" + "string": "[1,\"Sent\",\"16782687533916298\"]" } } }, @@ -10733,30 +10733,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:58:59 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603399797009\"]" + "string": "[1,\"Sent\",\"16782687534388605\"]" } } }, @@ -10786,30 +10786,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603400311238\"]" + "string": "[1,\"Sent\",\"16782687534898200\"]" } } }, @@ -10839,30 +10839,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603400781135\"]" + "string": "[1,\"Sent\",\"16782687535386290\"]" } } }, @@ -10892,30 +10892,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603401324182\"]" + "string": "[1,\"Sent\",\"16782687535999113\"]" } } }, @@ -10945,30 +10945,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603401803311\"]" + "string": "[1,\"Sent\",\"16782687536485583\"]" } } }, @@ -10998,30 +10998,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603402330473\"]" + "string": "[1,\"Sent\",\"16782687536984818\"]" } } }, @@ -11051,30 +11051,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603402805911\"]" + "string": "[1,\"Sent\",\"16782687537481501\"]" } } }, @@ -11104,30 +11104,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603403347914\"]" + "string": "[1,\"Sent\",\"16782687538008477\"]" } } }, @@ -11157,30 +11157,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603403838402\"]" + "string": "[1,\"Sent\",\"16782687538493785\"]" } } }, @@ -11210,30 +11210,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603404351436\"]" + "string": "[1,\"Sent\",\"16782687538982256\"]" } } }, @@ -11263,30 +11263,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603404851240\"]" + "string": "[1,\"Sent\",\"16782687539457640\"]" } } }, @@ -11316,30 +11316,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:53 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603405359245\"]" + "string": "[1,\"Sent\",\"16782687539941579\"]" } } }, @@ -11369,30 +11369,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603405869753\"]" + "string": "[1,\"Sent\",\"16782687540434949\"]" } } }, @@ -11422,30 +11422,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603406367651\"]" + "string": "[1,\"Sent\",\"16782687540935791\"]" } } }, @@ -11475,30 +11475,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603406885965\"]" + "string": "[1,\"Sent\",\"16782687541432553\"]" } } }, @@ -11528,30 +11528,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603407366173\"]" + "string": "[1,\"Sent\",\"16782687541948774\"]" } } }, @@ -11581,30 +11581,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603407857242\"]" + "string": "[1,\"Sent\",\"16782687542456285\"]" } } }, @@ -11634,30 +11634,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603408316239\"]" + "string": "[1,\"Sent\",\"16782687542951321\"]" } } }, @@ -11687,30 +11687,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603408804816\"]" + "string": "[1,\"Sent\",\"16782687543444398\"]" } } }, @@ -11740,30 +11740,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603409344423\"]" + "string": "[1,\"Sent\",\"16782687543944264\"]" } } }, @@ -11793,30 +11793,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:00 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603409895783\"]" + "string": "[1,\"Sent\",\"16782687544441246\"]" } } }, @@ -11846,30 +11846,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603410433884\"]" + "string": "[1,\"Sent\",\"16782687544943514\"]" } } }, @@ -11899,30 +11899,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603410935396\"]" + "string": "[1,\"Sent\",\"16782687545456245\"]" } } }, @@ -11952,30 +11952,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603411437577\"]" + "string": "[1,\"Sent\",\"16782687545953872\"]" } } }, @@ -12005,30 +12005,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603411948302\"]" + "string": "[1,\"Sent\",\"16782687546458879\"]" } } }, @@ -12058,30 +12058,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603412470990\"]" + "string": "[1,\"Sent\",\"16782687546959866\"]" } } }, @@ -12111,30 +12111,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603413036102\"]" + "string": "[1,\"Sent\",\"16782687547477596\"]" } } }, @@ -12164,30 +12164,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603413595754\"]" + "string": "[1,\"Sent\",\"16782687547978695\"]" } } }, @@ -12217,30 +12217,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603414151363\"]" + "string": "[1,\"Sent\",\"16782687548519010\"]" } } }, @@ -12270,30 +12270,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603414888051\"]" + "string": "[1,\"Sent\",\"16782687549026905\"]" } } }, @@ -12323,30 +12323,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:54 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603415427133\"]" + "string": "[1,\"Sent\",\"16782687549541218\"]" } } }, @@ -12376,30 +12376,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603415928633\"]" + "string": "[1,\"Sent\",\"16782687550057776\"]" } } }, @@ -12429,30 +12429,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603416430437\"]" + "string": "[1,\"Sent\",\"16782687550564641\"]" } } }, @@ -12482,30 +12482,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603416928436\"]" + "string": "[1,\"Sent\",\"16782687551079518\"]" } } }, @@ -12535,30 +12535,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603417458631\"]" + "string": "[1,\"Sent\",\"16782687551627274\"]" } } }, @@ -12588,30 +12588,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603417968484\"]" + "string": "[1,\"Sent\",\"16782687552142732\"]" } } }, @@ -12641,30 +12641,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603418437324\"]" + "string": "[1,\"Sent\",\"16782687552657004\"]" } } }, @@ -12694,30 +12694,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:01 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603418933646\"]" + "string": "[1,\"Sent\",\"16782687553166462\"]" } } }, @@ -12750,36 +12750,36 @@ "Age": [ "0" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache" ], - "Server": [ - "Pubnub Storage" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Tue, 07 Feb 2023 08:59:03 GMT" - ], - "Cache-Control": [ - "no-cache" - ], - "Access-Control-Allow-Origin": [ - "*" + "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/DlxGQUZCRkJ2GTkOnodPQaeg0dBo6DZ2GTkN7vR6qzi5zv2/vdsvzhCa8/Y7XBwAA//8DAGHamXe/AwAA" + "binary": "H4sIAAAAAAAAAzzOu21DUQwE0V5eLAPcx38tgkIDbsHdW4A8N1swOMPn8/r5/v3SXI/P2P9xG0OMm+GMYCSjGM1AvpEd2ZEd2ZEd2ZEd2ZEd2ZEDOZADOZADOZADOZADOZATOZETOZETOZETOZETOZELuZALuZALuZALuZALuZAbuZEbuZEbuZEbuZEbuZEHeZAHeZAHeZAHeZAHeZAXeZEXeZEXeZEXeZEXeZFl0DJsGbgMXQYvw5cRkFGQkZCdhk5Dp6HT0GnoNHQaOg319Xqoeu6ajrK+6/3zuWRaVlTo9QcAAP//AwABdp41vQMAAA==" } } }, @@ -12812,43 +12812,43 @@ "Age": [ "0" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache" ], - "Server": [ - "Pubnub Storage" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Tue, 07 Feb 2023 08:59:03 GMT" - ], - "Cache-Control": [ - "no-cache" - ], - "Access-Control-Allow-Origin": [ - "*" + "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/DlxGQUZCRkJ2GTkOnodPQaeg0dBo6DZ2GTkN7vR6qzi5zv++e2z3OE5p1r6jXBwAA//8DALNAVX+/AwAA" + "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&max=25", + "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": [ @@ -12874,36 +12874,36 @@ "Age": [ "0" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache" ], - "Server": [ - "Pubnub Storage" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Tue, 07 Feb 2023 08:59:03 GMT" - ], - "Cache-Control": [ - "no-cache" - ], - "Access-Control-Allow-Origin": [ - "*" + "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": "H4sIAAAAAAAAA6yX3W7bMAyFX6XQdQqQIsWfvspQFEHhrsPSdEjSi6Lou48Out3MNGhgd7EVH4nUp3Psj3a+7C9v53Z30wF2N206nV5PcfW0P5ynP9cPL9P5vP8+xf3W4ubj8/54nA7zUx/tabo8Pt9+/eN8G797u/v20f4+056n91sfbdcuP16my+vP6djuGooOFSBy7oMFIMa/Hnm4vP+KuY5vh8Pn7h8hSYVGdwK0qpCmQtKVSefx0ormGZdLUwIQxqqQp0LWTdGqpeG1m8tL8u7AUq0NYV78khIDEGKn+pp6qoTUGW0er/QbgVKlTgSs83hNiVMlIlbHebymlPHNwDSQaca2ppQBzjBoeOd5pppSRjiDkKiMKpgIGeIMSiK4oeMZ4wxGKJ3m8VJ1ODvGMplOzNzLFGDKOMbmkVmZAkwZx0AgDK987jBlHDsruFf9MibO+oSB09BRry5lHNnMoM4TpoxjEG5C9b1LGUcJpQ3n7hocizyhuhhvoCBlHM2JhBMvuN8thCluC1NSljGSCbaEKauBc5UNz7aBgjCJfSivKHMaclHr3Kvce7YJ5KpK5tXS1sLUVAeM8qFOw5Tc1RWgbH6QGg2AGsbJrtroSpiixevZ1RxLhgyp0UAPc/ANSqnRABkZX6uvrSk1GmAbYaVVnBAywiOWTVxH2bJWwlTMhkt97zLGI5ZtaJyWKgUrYRrGznY17FLH8zAFtzADK/dpJUzBaYQhlKvLwxSdjeo8rYUpkOAGpZRxZBxIUu9TyjgO7or/J0w5Xqyp7HRrYcpxXqj86okp4xjprvHlsEzB/efnbwAAAP//AwA7DPUC3Q4AAA==" + "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=" } } } 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 index abf2433c..cd6a630a 100644 --- 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 @@ -27,30 +27,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:03 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603437785890\"]" + "string": "[1,\"Sent\",\"16782687557392439\"]" } } }, @@ -80,30 +80,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:03 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603438169523\"]" + "string": "[1,\"Sent\",\"16782687557764250\"]" } } }, @@ -133,30 +133,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:03 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603438511510\"]" + "string": "[1,\"Sent\",\"16782687558126568\"]" } } }, @@ -186,30 +186,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:03 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603438874553\"]" + "string": "[1,\"Sent\",\"16782687558497044\"]" } } }, @@ -239,30 +239,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:03 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603439206896\"]" + "string": "[1,\"Sent\",\"16782687558961789\"]" } } }, @@ -292,30 +292,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:03 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603439628018\"]" + "string": "[1,\"Sent\",\"16782687559335551\"]" } } }, @@ -345,30 +345,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:55 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:03 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603439994096\"]" + "string": "[1,\"Sent\",\"16782687559709065\"]" } } }, @@ -398,30 +398,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603440359223\"]" + "string": "[1,\"Sent\",\"16782687560071519\"]" } } }, @@ -451,30 +451,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603440766868\"]" + "string": "[1,\"Sent\",\"16782687560448631\"]" } } }, @@ -504,30 +504,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603441129177\"]" + "string": "[1,\"Sent\",\"16782687560810786\"]" } } }, @@ -557,30 +557,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603441501427\"]" + "string": "[1,\"Sent\",\"16782687561176207\"]" } } }, @@ -610,30 +610,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603441861370\"]" + "string": "[1,\"Sent\",\"16782687561521437\"]" } } }, @@ -663,30 +663,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603442229195\"]" + "string": "[1,\"Sent\",\"16782687561879549\"]" } } }, @@ -716,30 +716,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603442587921\"]" + "string": "[1,\"Sent\",\"16782687562236711\"]" } } }, @@ -769,30 +769,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603442944666\"]" + "string": "[1,\"Sent\",\"16782687562593356\"]" } } }, @@ -822,30 +822,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603443314391\"]" + "string": "[1,\"Sent\",\"16782687562963294\"]" } } }, @@ -875,30 +875,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603443743586\"]" + "string": "[1,\"Sent\",\"16782687563338913\"]" } } }, @@ -928,30 +928,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603444128996\"]" + "string": "[1,\"Sent\",\"16782687563706569\"]" } } }, @@ -981,30 +981,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603444498136\"]" + "string": "[1,\"Sent\",\"16782687564075881\"]" } } }, @@ -1034,30 +1034,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603444879280\"]" + "string": "[1,\"Sent\",\"16782687564453945\"]" } } }, @@ -1087,30 +1087,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603445245582\"]" + "string": "[1,\"Sent\",\"16782687564823958\"]" } } }, @@ -1140,30 +1140,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603445623220\"]" + "string": "[1,\"Sent\",\"16782687565186370\"]" } } }, @@ -1193,30 +1193,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603446006980\"]" + "string": "[1,\"Sent\",\"16782687565563790\"]" } } }, @@ -1246,30 +1246,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603446384250\"]" + "string": "[1,\"Sent\",\"16782687565944375\"]" } } }, @@ -1299,30 +1299,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603446759288\"]" + "string": "[1,\"Sent\",\"16782687566330245\"]" } } }, @@ -1352,30 +1352,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603447132478\"]" + "string": "[1,\"Sent\",\"16782687566719219\"]" } } }, @@ -1405,30 +1405,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603447509427\"]" + "string": "[1,\"Sent\",\"16782687567097924\"]" } } }, @@ -1458,30 +1458,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603447887904\"]" + "string": "[1,\"Sent\",\"16782687567475544\"]" } } }, @@ -1511,30 +1511,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603448261884\"]" + "string": "[1,\"Sent\",\"16782687567870930\"]" } } }, @@ -1564,30 +1564,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603448652442\"]" + "string": "[1,\"Sent\",\"16782687568258333\"]" } } }, @@ -1617,30 +1617,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603449048329\"]" + "string": "[1,\"Sent\",\"16782687568648968\"]" } } }, @@ -1670,30 +1670,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603449427628\"]" + "string": "[1,\"Sent\",\"16782687569041150\"]" } } }, @@ -1723,30 +1723,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:04 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603449811662\"]" + "string": "[1,\"Sent\",\"16782687569435601\"]" } } }, @@ -1776,30 +1776,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:56 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603450359328\"]" + "string": "[1,\"Sent\",\"16782687569815033\"]" } } }, @@ -1829,30 +1829,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603450894839\"]" + "string": "[1,\"Sent\",\"16782687570200503\"]" } } }, @@ -1882,30 +1882,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603451298440\"]" + "string": "[1,\"Sent\",\"16782687570600993\"]" } } }, @@ -1935,30 +1935,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603451734692\"]" + "string": "[1,\"Sent\",\"16782687570973633\"]" } } }, @@ -1988,30 +1988,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603452184039\"]" + "string": "[1,\"Sent\",\"16782687571364087\"]" } } }, @@ -2041,30 +2041,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603452573961\"]" + "string": "[1,\"Sent\",\"16782687571768420\"]" } } }, @@ -2094,30 +2094,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603452954055\"]" + "string": "[1,\"Sent\",\"16782687572151258\"]" } } }, @@ -2147,30 +2147,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603453359487\"]" + "string": "[1,\"Sent\",\"16782687572531776\"]" } } }, @@ -2200,30 +2200,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603453744739\"]" + "string": "[1,\"Sent\",\"16782687572939042\"]" } } }, @@ -2253,30 +2253,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603454124511\"]" + "string": "[1,\"Sent\",\"16782687573335473\"]" } } }, @@ -2306,30 +2306,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603454511674\"]" + "string": "[1,\"Sent\",\"16782687573736407\"]" } } }, @@ -2359,30 +2359,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603454953634\"]" + "string": "[1,\"Sent\",\"16782687574126000\"]" } } }, @@ -2412,30 +2412,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603455415447\"]" + "string": "[1,\"Sent\",\"16782687574514934\"]" } } }, @@ -2465,30 +2465,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603455845482\"]" + "string": "[1,\"Sent\",\"16782687574906668\"]" } } }, @@ -2518,30 +2518,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603456253582\"]" + "string": "[1,\"Sent\",\"16782687575299514\"]" } } }, @@ -2571,30 +2571,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603456658857\"]" + "string": "[1,\"Sent\",\"16782687575703522\"]" } } }, @@ -2624,30 +2624,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603457077360\"]" + "string": "[1,\"Sent\",\"16782687576110796\"]" } } }, @@ -2677,30 +2677,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603457471393\"]" + "string": "[1,\"Sent\",\"16782687576512099\"]" } } }, @@ -2730,30 +2730,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603457877787\"]" + "string": "[1,\"Sent\",\"16782687576909461\"]" } } }, @@ -2783,30 +2783,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603458296738\"]" + "string": "[1,\"Sent\",\"16782687577329493\"]" } } }, @@ -2836,30 +2836,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603458793426\"]" + "string": "[1,\"Sent\",\"16782687577723155\"]" } } }, @@ -2889,30 +2889,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603459215616\"]" + "string": "[1,\"Sent\",\"16782687578152066\"]" } } }, @@ -2942,30 +2942,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:05 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603459621439\"]" + "string": "[1,\"Sent\",\"16782687578565595\"]" } } }, @@ -2995,30 +2995,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603460036793\"]" + "string": "[1,\"Sent\",\"16782687579044817\"]" } } }, @@ -3048,30 +3048,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603460436960\"]" + "string": "[1,\"Sent\",\"16782687579456472\"]" } } }, @@ -3101,30 +3101,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:57 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603460842596\"]" + "string": "[1,\"Sent\",\"16782687579848779\"]" } } }, @@ -3154,30 +3154,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603461277718\"]" + "string": "[1,\"Sent\",\"16782687580239705\"]" } } }, @@ -3207,30 +3207,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603461686639\"]" + "string": "[1,\"Sent\",\"16782687580637554\"]" } } }, @@ -3260,30 +3260,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603462094899\"]" + "string": "[1,\"Sent\",\"16782687581040737\"]" } } }, @@ -3313,30 +3313,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603462492040\"]" + "string": "[1,\"Sent\",\"16782687581434201\"]" } } }, @@ -3366,30 +3366,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603462885321\"]" + "string": "[1,\"Sent\",\"16782687581821472\"]" } } }, @@ -3419,30 +3419,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603463299457\"]" + "string": "[1,\"Sent\",\"16782687582216605\"]" } } }, @@ -3472,30 +3472,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603463708957\"]" + "string": "[1,\"Sent\",\"16782687582606635\"]" } } }, @@ -3525,30 +3525,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603464122289\"]" + "string": "[1,\"Sent\",\"16782687583006308\"]" } } }, @@ -3578,30 +3578,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603464526473\"]" + "string": "[1,\"Sent\",\"16782687583412656\"]" } } }, @@ -3631,30 +3631,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603464917607\"]" + "string": "[1,\"Sent\",\"16782687583813364\"]" } } }, @@ -3684,30 +3684,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603465332429\"]" + "string": "[1,\"Sent\",\"16782687584218599\"]" } } }, @@ -3737,30 +3737,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603465736390\"]" + "string": "[1,\"Sent\",\"16782687584634176\"]" } } }, @@ -3790,30 +3790,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603466145160\"]" + "string": "[1,\"Sent\",\"16782687585047230\"]" } } }, @@ -3843,30 +3843,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603466548731\"]" + "string": "[1,\"Sent\",\"16782687585450626\"]" } } }, @@ -3896,30 +3896,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603466949152\"]" + "string": "[1,\"Sent\",\"16782687585853902\"]" } } }, @@ -3949,30 +3949,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603467378476\"]" + "string": "[1,\"Sent\",\"16782687586271995\"]" } } }, @@ -4002,30 +4002,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603467840850\"]" + "string": "[1,\"Sent\",\"16782687586678030\"]" } } }, @@ -4055,30 +4055,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603468288962\"]" + "string": "[1,\"Sent\",\"16782687587080825\"]" } } }, @@ -4108,30 +4108,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603468721699\"]" + "string": "[1,\"Sent\",\"16782687587483337\"]" } } }, @@ -4161,30 +4161,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603469147923\"]" + "string": "[1,\"Sent\",\"16782687587898390\"]" } } }, @@ -4214,30 +4214,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603469571276\"]" + "string": "[1,\"Sent\",\"16782687588303689\"]" } } }, @@ -4267,30 +4267,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:06 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603469963747\"]" + "string": "[1,\"Sent\",\"16782687588708840\"]" } } }, @@ -4320,30 +4320,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603470459902\"]" + "string": "[1,\"Sent\",\"16782687589111430\"]" } } }, @@ -4373,30 +4373,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603470933182\"]" + "string": "[1,\"Sent\",\"16782687589516138\"]" } } }, @@ -4426,30 +4426,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:58 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603471334309\"]" + "string": "[1,\"Sent\",\"16782687589943574\"]" } } }, @@ -4479,30 +4479,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603471769097\"]" + "string": "[1,\"Sent\",\"16782687590358643\"]" } } }, @@ -4532,30 +4532,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603472186463\"]" + "string": "[1,\"Sent\",\"16782687590766438\"]" } } }, @@ -4585,30 +4585,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603472586563\"]" + "string": "[1,\"Sent\",\"16782687591181331\"]" } } }, @@ -4638,30 +4638,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603473009174\"]" + "string": "[1,\"Sent\",\"16782687591609385\"]" } } }, @@ -4691,30 +4691,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603473458740\"]" + "string": "[1,\"Sent\",\"16782687592033475\"]" } } }, @@ -4744,30 +4744,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603473894120\"]" + "string": "[1,\"Sent\",\"16782687592454020\"]" } } }, @@ -4797,30 +4797,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603474339421\"]" + "string": "[1,\"Sent\",\"16782687592877269\"]" } } }, @@ -4850,30 +4850,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603474766480\"]" + "string": "[1,\"Sent\",\"16782687593284112\"]" } } }, @@ -4903,30 +4903,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603475169206\"]" + "string": "[1,\"Sent\",\"16782687593706572\"]" } } }, @@ -4956,30 +4956,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603475566065\"]" + "string": "[1,\"Sent\",\"16782687594127177\"]" } } }, @@ -5009,30 +5009,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603475993879\"]" + "string": "[1,\"Sent\",\"16782687594553789\"]" } } }, @@ -5062,30 +5062,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603476444549\"]" + "string": "[1,\"Sent\",\"16782687594974140\"]" } } }, @@ -5115,30 +5115,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603476866726\"]" + "string": "[1,\"Sent\",\"16782687595387243\"]" } } }, @@ -5168,30 +5168,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603477435563\"]" + "string": "[1,\"Sent\",\"16782687595810294\"]" } } }, @@ -5221,30 +5221,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603477897799\"]" + "string": "[1,\"Sent\",\"16782687596236817\"]" } } }, @@ -5274,30 +5274,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603478333279\"]" + "string": "[1,\"Sent\",\"16782687596676400\"]" } } }, @@ -5327,30 +5327,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603478761197\"]" + "string": "[1,\"Sent\",\"16782687597116110\"]" } } }, @@ -5380,30 +5380,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603479182588\"]" + "string": "[1,\"Sent\",\"16782687597555072\"]" } } }, @@ -5433,30 +5433,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:07 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603479606677\"]" + "string": "[1,\"Sent\",\"16782687597976334\"]" } } }, @@ -5486,30 +5486,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603480026367\"]" + "string": "[1,\"Sent\",\"16782687598400727\"]" } } }, @@ -5539,30 +5539,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603480495150\"]" + "string": "[1,\"Sent\",\"16782687598826459\"]" } } }, @@ -5592,30 +5592,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603480977220\"]" + "string": "[1,\"Sent\",\"16782687599269201\"]" } } }, @@ -5645,30 +5645,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:45:59 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603481433728\"]" + "string": "[1,\"Sent\",\"16782687599726445\"]" } } }, @@ -5698,30 +5698,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603481876208\"]" + "string": "[1,\"Sent\",\"16782687600185081\"]" } } }, @@ -5751,30 +5751,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603482329408\"]" + "string": "[1,\"Sent\",\"16782687600627568\"]" } } }, @@ -5804,30 +5804,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603482772043\"]" + "string": "[1,\"Sent\",\"16782687601053794\"]" } } }, @@ -5857,30 +5857,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603483216072\"]" + "string": "[1,\"Sent\",\"16782687601494518\"]" } } }, @@ -5910,30 +5910,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603483640907\"]" + "string": "[1,\"Sent\",\"16782687601926050\"]" } } }, @@ -5963,30 +5963,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603484080991\"]" + "string": "[1,\"Sent\",\"16782687602358579\"]" } } }, @@ -6016,30 +6016,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603484534474\"]" + "string": "[1,\"Sent\",\"16782687602792178\"]" } } }, @@ -6069,30 +6069,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603484990048\"]" + "string": "[1,\"Sent\",\"16782687603221884\"]" } } }, @@ -6122,30 +6122,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603485500490\"]" + "string": "[1,\"Sent\",\"16782687603765565\"]" } } }, @@ -6175,30 +6175,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603485969557\"]" + "string": "[1,\"Sent\",\"16782687604201456\"]" } } }, @@ -6228,30 +6228,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603486434422\"]" + "string": "[1,\"Sent\",\"16782687604633774\"]" } } }, @@ -6281,30 +6281,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603486890133\"]" + "string": "[1,\"Sent\",\"16782687605068811\"]" } } }, @@ -6334,30 +6334,30 @@ "message": "OK" }, "headers": { - "Access-Control-Allow-Methods": [ - "GET" + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Date": [ + "Wed, 08 Mar 2023 09:46:00 GMT" ], "Content-Length": [ "30" ], + "Content-Type": [ + "text/javascript; charset=\"UTF-8\"" + ], "Connection": [ "keep-alive" ], - "Date": [ - "Tue, 07 Feb 2023 08:59:08 GMT" + "Access-Control-Allow-Methods": [ + "GET" ], "Access-Control-Allow-Origin": [ "*" - ], - "Cache-Control": [ - "no-cache" ] }, "body": { - "string": "[1,\"Sent\",\"16757603487345542\"]" + "string": "[1,\"Sent\",\"16782687605494974\"]" } } }, @@ -6390,43 +6390,43 @@ "Age": [ "0" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache" ], - "Server": [ - "Pubnub Storage" + "Date": [ + "Wed, 08 Mar 2023 09:46:01 GMT" ], "Content-Type": [ "text/javascript; charset=\"UTF-8\"" ], - "Connection": [ - "keep-alive" - ], - "Date": [ - "Tue, 07 Feb 2023 08:59:09 GMT" - ], - "Cache-Control": [ - "no-cache" - ], - "Access-Control-Allow-Origin": [ - "*" + "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": "H4sIAAAAAAAAA0TNy2lDURAE0VzeWobpN/9YhJYCp+DsbbDretf04tTzeX2+vz5uux6/Q4yb4YxgJKMYzRjG/g1HdmRHdmRHdmRHdmRHduRADuRADuRADuRADuRADuRETuRETuRETuRETuRETuRCLuRCLuRCLuRCLuRCLuRGbuRGbuRGbuRGbuRGbuRBHuRBHuRBHuRBHuRBHuRFXuRFXuRFXuRFXuRFXmQZtAxbBi5Dl8HL8GUEZBRkJGSnodPQaeg0dBo6DZ2GTkOnodPQXq+HqrPLPCLvyJz7/5n2nyfu1zcAAAD//wMAMG0TEb8DAAA=" + "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&max=25", + "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": [ @@ -6452,36 +6452,36 @@ "Age": [ "0" ], - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "text/javascript; charset=\"UTF-8\"" + "Cache-Control": [ + "no-cache" ], "Access-Control-Allow-Credentials": [ "true" ], - "Connection": [ - "keep-alive" - ], "Date": [ - "Tue, 07 Feb 2023 08:59:09 GMT" - ], - "Cache-Control": [ - "no-cache" + "Wed, 08 Mar 2023 09:46:01 GMT" ], - "Access-Control-Allow-Origin": [ - "*" + "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": "H4sIAAAAAAAAA5SVwW7CMAyGX2XKmUp24iT2XmWaUIXCQCtlouWAEO++NOI0Das+xnH/OL/9NXc3zf18ndz7mwfYvLndoR/HMiyBu9uXeXfoTmWa+q8ydf1uPp7HqasxrPsfd/fcqgt3KLdOoqsS8/FU5vN3GZcwphxzgkA5EVEkWTKen23n20+pSeN1GB6bet5fuaTJcUrZt4y1clmRyxRiTMFSHWtyLDmL6bIt+YV3HELw2SKHAEp5nBOiND9WmoeAip4g+8jNkNV6XtNLULtrq6/17n//GMCnkGx69Lo+BpKIsTm8+r4KGwx1Wry36SlwMFII2dv6odDBWAfGg01PwYN98EJGPYUP9tU+IAu9iAofHDwmyG1C1/YXFT44JAIB0/yhwgdX70Cknbi6Po0PioEot4lfrafxQSIAZJoX1PiIscqJiQ/U+IiSJEZbPzQ+ElX/vG1eND4SC2CwzbPGRw4UI72s77O+vq5cLufL9tn+5ele/n8tWBf7fpjK4xcAAP//AwCTFU6dLggAAA==" + "binary": "H4sIAAAAAAAAA5yWUWsCMQyA/4r0WSHpNUm7vzKGHFKnTM/h3R6G+N8X7Q02sGXLa9r7GpJ8vV7cOPXTx+ieFh5guXCbXT8M+XALXNw2T5vd6pjHsX/N46rfTPvTMK40hrr+fHHz0nr6fM8aGT4OB2XMUQ24Xf5cJXIanPbHPJ3e8nALI0v0HIVSSBIwwH1HgTh3XerZf0NzA01dFB86K1pa6IjgU7CiYwPNvuOI5XBDQVILzcIBrLXG+cvHfRRERrSzsZG3EBGIN1ZbO9ViJ+Gus3YSoYzX45pELbZ4aysRSlYVtvoTqHT7/2OC0HIyeU4eSkcs7JaUSTTvUE63sOtWMgBGgmjPu66lstkLcdlhybvuJYN2oxPzbfJt3aM5UXZIgdCcN9a9VLYOCpDZeax7yeA7iiTm+ca6l8qW5FHsNal7ydB5jzGa7xOse6lsYSI2u4N1LxmCCh+o7DDM9/zDejyDQW9YEXtNWl4ScIzzlFrybnlJ6o4+T37/d170deLy+Xw6r3+8c2577kF93Wz7w5ivXwAAAP//AwAmeY0DWgkAAA==" } } } diff --git a/tests/integrational/native_sync/test_fetch_messages.py b/tests/integrational/native_sync/test_fetch_messages.py index 7a212a2a..abfbe788 100644 --- a/tests/integrational/native_sync/test_fetch_messages.py +++ b/tests/integrational/native_sync/test_fetch_messages.py @@ -1,5 +1,4 @@ import time -import unittest from pubnub.models.consumer.history import PNFetchMessagesResult from pubnub.models.consumer.pubsub import PNPublishResult @@ -131,22 +130,22 @@ def test_fetch_messages_actions_include_uuid(self): assert history[0].uuid == uuid1 assert history[1].uuid == uuid2 - @unittest.skip('refactor in progress') @use_cassette_and_stub_time_sleep_native( '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" + 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 str(history[0].message_type) == '1' + assert str(history[0].message_type) == 'pn_message' From c35ba870cfd7e4b706a5b1f70d43b6e2bbc6c262 Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Tue, 28 Mar 2023 16:37:43 +0200 Subject: [PATCH 15/15] Remove PNMessageType" --- pubnub/endpoints/fetch_messages.py | 9 ++++++- .../file_operations/publish_file_message.py | 16 +++++------ pubnub/endpoints/file_operations/send_file.py | 16 +++++------ pubnub/endpoints/pubsub/publish.py | 10 +++---- pubnub/endpoints/signal.py | 16 +++++------ pubnub/models/consumer/history.py | 22 ++++++++------- pubnub/models/consumer/message_type.py | 27 ------------------- pubnub/models/consumer/pubsub.py | 5 ++-- pubnub/models/server/subscribe.py | 13 +++++---- pubnub/workers.py | 1 + tests/acceptance/files/steps/steps.py | 6 ++--- tests/acceptance/history/steps/then_steps.py | 10 +++++++ tests/acceptance/history/steps/when_steps.py | 4 ++- tests/functional/test_publish.py | 19 +------------ tests/functional/test_signal.py | 20 +------------- tests/integrational/asyncio/test_subscribe.py | 3 +-- .../native_sync/test_fetch_messages.py | 2 +- 17 files changed, 75 insertions(+), 124 deletions(-) delete mode 100644 pubnub/models/consumer/message_type.py diff --git a/pubnub/endpoints/fetch_messages.py b/pubnub/endpoints/fetch_messages.py index a5a34ca7..3883475e 100644 --- a/pubnub/endpoints/fetch_messages.py +++ b/pubnub/endpoints/fetch_messages.py @@ -32,6 +32,7 @@ def __init__(self, pubnub): self._include_meta = None self._include_message_actions = None self._include_message_type = True + self._include_type = True self._include_space_id = None self._include_uuid = None @@ -72,6 +73,11 @@ 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 @@ -85,7 +91,7 @@ def include_space_id(self, include_space_id): def custom_params(self): params = { 'max': int(self._count), - 'include_type': 'true' if self._include_message_type else 'false', + 'include_type': 'true' if self._include_type else 'false', 'include_message_type': 'true' if self._include_message_type else 'false', } @@ -165,6 +171,7 @@ def create_response(self, envelope): # pylint: disable=W0221 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 2097dd98..edfa1b47 100644 --- a/pubnub/endpoints/file_operations/publish_file_message.py +++ b/pubnub/endpoints/file_operations/publish_file_message.py @@ -3,8 +3,6 @@ from pubnub import utils from pubnub.models.consumer.file import PNPublishFileMessageResult from pubnub.endpoints.mixins import TimeTokenOverrideMixin -from pubnub.models.consumer.message_type import PNMessageType -from typing import Union class PublishFileMessage(FileOperationEndpoint, TimeTokenOverrideMixin): @@ -22,7 +20,7 @@ def __init__(self, pubnub): self._cipher_key = None self._replicate = None self._ptto = None - self._message_type = None + self._type = None self._space_id = None def meta(self, meta): @@ -53,11 +51,11 @@ def file_name(self, file_name): self._file_name = file_name return self - def message_type(self, message_type: Union[PNMessageType, str]): - self._message_type = message_type + def type(self, type: str): + self._type = type return self - def space_id(self, space_id): + def space_id(self, space_id: str): self._space_id = space_id return self @@ -99,11 +97,11 @@ def custom_params(self): "ttl": self._ttl, "store": 1 if self._should_store else 0 }) - if self._message_type: - params['type'] = str(self._message_type) + if self._type: + params['type'] = self._type if self._space_id: - params['space-id'] = str(self._space_id) + params['space-id'] = self._space_id return params diff --git a/pubnub/endpoints/file_operations/send_file.py b/pubnub/endpoints/file_operations/send_file.py index d0be79e8..5f23594e 100644 --- a/pubnub/endpoints/file_operations/send_file.py +++ b/pubnub/endpoints/file_operations/send_file.py @@ -6,8 +6,6 @@ from pubnub.endpoints.file_operations.fetch_upload_details import FetchFileUploadS3Data from pubnub.request_handlers.requests_handler import RequestsRequestHandler from pubnub.endpoints.mixins import TimeTokenOverrideMixin -from pubnub.models.consumer.message_type import PNMessageType -from typing import Union class SendFileNative(FileOperationEndpoint, TimeTokenOverrideMixin): @@ -24,7 +22,7 @@ def __init__(self, pubnub): self._file_object = None self._replicate = None self._ptto = None - self._message_type = None + self._type = None self._space_id = None def file_object(self, fd): @@ -73,8 +71,8 @@ def is_compressable(self): def custom_params(self): params = {} - if self._message_type: - params['type'] = str(self._message_type) + if self._type: + params['type'] = str(self._type) if self._space_id: params['space-id'] = self._space_id @@ -120,11 +118,11 @@ def cipher_key(self, cipher_key): self._cipher_key = cipher_key return self - def message_type(self, message_type: Union[PNMessageType, str]): - self._message_type = message_type + def type(self, type: str): + self._type = type return self - def space_id(self, space_id): + def space_id(self, space_id: str): self._space_id = space_id return self @@ -158,7 +156,7 @@ def sync(self): replicate(self._replicate).\ ptto(self._ptto).\ cipher_key(self._cipher_key).\ - message_type(self._message_type).\ + type(self._type).\ space_id(self._space_id).sync() response_envelope.result.timestamp = publish_file_response.result.timestamp diff --git a/pubnub/endpoints/pubsub/publish.py b/pubnub/endpoints/pubsub/publish.py index 73946fcd..9f910d07 100644 --- a/pubnub/endpoints/pubsub/publish.py +++ b/pubnub/endpoints/pubsub/publish.py @@ -5,8 +5,6 @@ from pubnub.models.consumer.pubsub import PNPublishResult from pubnub.enums import HttpMethod, PNOperationType from pubnub.endpoints.mixins import TimeTokenOverrideMixin -from pubnub.models.consumer.message_type import PNMessageType -from typing import Union class Publish(Endpoint, TimeTokenOverrideMixin): @@ -31,7 +29,7 @@ def channel(self, channel): self._channel = str(channel) return self - def space_id(self, space_id): + def space_id(self, space_id: str): self._space_id = str(space_id) return self @@ -39,7 +37,7 @@ def message(self, message): self._message = message return self - def message_type(self, message_type: Union[PNMessageType, str]): + def message_type(self, message_type: str): self._message_type = message_type return self @@ -104,10 +102,10 @@ def custom_params(self): params["auth"] = utils.url_encode(self.pubnub.config.auth_key) if self._message_type is not None: - params['type'] = str(self._message_type) + params['type'] = self._message_type if self._space_id is not None: - params['space-id'] = str(self._space_id) + params['space-id'] = self._space_id return params diff --git a/pubnub/endpoints/signal.py b/pubnub/endpoints/signal.py index d2c92b2a..60874e22 100644 --- a/pubnub/endpoints/signal.py +++ b/pubnub/endpoints/signal.py @@ -2,8 +2,6 @@ from pubnub.endpoints.endpoint import Endpoint from pubnub.enums import HttpMethod, PNOperationType from pubnub.models.consumer.signal import PNSignalResult -from pubnub.models.consumer.message_type import PNMessageType -from typing import Union class Signal(Endpoint): @@ -13,7 +11,7 @@ def __init__(self, pubnub): Endpoint.__init__(self, pubnub) self._channel = None self._message = None - self._space = None + self._space_id = None self._message_type = None def channel(self, channel): @@ -24,11 +22,11 @@ def message(self, message): self._message = message return self - def space_id(self, space): - self._space = str(space) + def space_id(self, space_id: str): + self._space_id = str(space_id) return self - def message_type(self, message_type: Union[PNMessageType, str]): + def message_type(self, message_type: str): self._message_type = message_type return self @@ -44,10 +42,10 @@ def custom_params(self): params = {} if self._message_type is not None: - params['type'] = str(self._message_type) + params['type'] = self._message_type - if self._space is not None: - params['space-id'] = str(self._space) + if self._space_id is not None: + params['space-id'] = self._space_id return params diff --git a/pubnub/models/consumer/history.py b/pubnub/models/consumer/history.py index f4338289..1b5cebcc 100644 --- a/pubnub/models/consumer/history.py +++ b/pubnub/models/consumer/history.py @@ -1,6 +1,3 @@ -from pubnub.models.consumer.message_type import PNMessageType - - class PNHistoryResult(object): def __init__(self, messages, start_timetoken, end_timetoken): self.messages = messages @@ -66,14 +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, include_message_type=False, include_space_id=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, include_message_actions, include_message_type, include_space_id) + message = PNFetchMessageItem(item, include_message_actions, include_message_type, include_type, + include_space_id) channels[key].append(message) return PNFetchMessagesResult( @@ -89,7 +87,7 @@ class PNFetchMessageItem(object): timetoken = None actions = None - def __init__(self, item, include_message_actions, include_message_type, include_space_id): + def __init__(self, item, include_message_actions, include_message_type, include_type, include_space_id): self.message = item['message'] self.timetoken = item['timetoken'] @@ -106,9 +104,13 @@ def __init__(self, item, include_message_actions, include_message_type, include_ self.actions = {} if include_message_type: - self.message_type = PNMessageType.from_response( - message_type=item['type'] if 'type' in item.keys() else None, - pn_message_type=item['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'] diff --git a/pubnub/models/consumer/message_type.py b/pubnub/models/consumer/message_type.py deleted file mode 100644 index 6ef30e24..00000000 --- a/pubnub/models/consumer/message_type.py +++ /dev/null @@ -1,27 +0,0 @@ -class PNMessageType: - pn_message_type: str = None - message_type: str = None - _type_mapping = { - 'None': 'pn_message', - '0': 'pn_message', - '1': 'pn_signal', - '2': 'pn_object', - '3': 'pn_message_action', - '4': 'pn_file', - } - - def __init__(self, message_type: str = None) -> None: - self.message_type = message_type - - def set_pn_message_type(self, pn_message_type: str): - self.pn_message_type = self._type_mapping[str(pn_message_type)] - return self - - def from_response(message_type: str = None, pn_message_type: str = None): - return PNMessageType(message_type).set_pn_message_type(pn_message_type) - - def __str__(self) -> str: - return self.message_type if self.message_type else str(self.pn_message_type) - - def toJSON(self) -> str: - return str(self) diff --git a/pubnub/models/consumer/pubsub.py b/pubnub/models/consumer/pubsub.py index 1e5d47d1..0e5046d6 100644 --- a/pubnub/models/consumer/pubsub.py +++ b/pubnub/models/consumer/pubsub.py @@ -3,7 +3,7 @@ class PNMessageResult(object): def __init__(self, message, subscription, channel, timetoken, user_metadata=None, publisher=None, message_type=None, - space_id=None): + type=None, space_id=None): if subscription is not None: assert isinstance(subscription, str) @@ -29,7 +29,8 @@ def __init__(self, message, subscription, channel, timetoken, user_metadata=None self.timetoken = timetoken self.user_metadata = user_metadata self.publisher = publisher - self.type = message_type + self.message_type = message_type + self.type = type self.space_id = space_id diff --git a/pubnub/models/server/subscribe.py b/pubnub/models/server/subscribe.py index dc594596..ba2d74b6 100644 --- a/pubnub/models/server/subscribe.py +++ b/pubnub/models/server/subscribe.py @@ -1,6 +1,3 @@ -from pubnub.models.consumer.message_type import PNMessageType - - class SubscribeEnvelope: def __init__(self, messages=None, metadata=None): assert isinstance(messages, (list, None)) @@ -58,11 +55,13 @@ def from_json(cls, json_input): if 'si' in json_input: message.space_id = json_input['si'] + # customers message type set during publish if 'mt' in json_input: - if 'e' in json_input: - message.message_type = PNMessageType.from_response(json_input['mt'], json_input['e']) - else: - message.message_type = PNMessageType(json_input['mt']) + 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 d2bfdc1c..62596dbf 100644 --- a/pubnub/workers.py +++ b/pubnub/workers.py @@ -174,6 +174,7 @@ def _process_incoming_payload(self, message): timetoken=publish_meta_data.publish_timetoken, 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/steps/steps.py b/tests/acceptance/files/steps/steps.py index 9adf30b3..26e38815 100644 --- a/tests/acceptance/files/steps/steps.py +++ b/tests/acceptance/files/steps/steps.py @@ -13,12 +13,12 @@ def step_impl(context): context.peer = pubnub_instance -@when(u'I send a file with \'{space_id}\' space id and \'{message_type}\' message type') -def step_impl(context, space_id, message_type): +@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).message_type(message_type).sync() + 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: diff --git a/tests/acceptance/history/steps/then_steps.py b/tests/acceptance/history/steps/then_steps.py index cec9533d..67f61d79 100644 --- a/tests/acceptance/history/steps/then_steps.py +++ b/tests/acceptance/history/steps/then_steps.py @@ -31,3 +31,13 @@ def step_impl(context): @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 index b4b5811c..c50f9430 100644 --- a/tests/acceptance/history/steps/when_steps.py +++ b/tests/acceptance/history/steps/when_steps.py @@ -3,7 +3,7 @@ @when("I fetch message history for '{channel}' channel") def step_impl(context, channel): - envelope = context.peer.fetch_messages().channels(channel).include_message_type(True).sync() + 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] @@ -15,6 +15,8 @@ def step_impl(context, flag, value, 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) diff --git a/tests/functional/test_publish.py b/tests/functional/test_publish.py index 3d9940aa..634eff71 100644 --- a/tests/functional/test_publish.py +++ b/tests/functional/test_publish.py @@ -4,7 +4,6 @@ from pubnub.endpoints.pubsub.publish import Publish from pubnub.managers import TelemetryManager -from pubnub.models.consumer.message_type import PNMessageType from pubnub.pubnub import PubNub from tests.helper import pnconf, sdk_name, url_encode from unittest.mock import MagicMock @@ -109,23 +108,7 @@ def test_pub_with_space_id(self): 'uuid': self.pubnub.uuid, }) - def test_pub_with_pn_message_type(self): - message = "hi" - message_type = 'test_type' - encoded_message = url_encode(message) - - self.pub.channel("ch1").message(message).message_type(PNMessageType(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_with_str_message_type(self): + def test_pub_with_message_type(self): message = "hi" message_type = 'test_type' encoded_message = url_encode(message) diff --git a/tests/functional/test_signal.py b/tests/functional/test_signal.py index 27c3951a..246c5df6 100644 --- a/tests/functional/test_signal.py +++ b/tests/functional/test_signal.py @@ -4,7 +4,6 @@ from pubnub.pubnub import PubNub from pubnub.exceptions import PubNubException from pubnub.endpoints.signal import Signal -from pubnub.models.consumer.message_type import PNMessageType from pubnub.managers import TelemetryManager from tests.helper import url_encode, pnconf_copy, sdk_name from unittest.mock import MagicMock @@ -70,24 +69,7 @@ def test_signal_with_space_id(self): 'uuid': self.pubnub.uuid, }) - def test_signal_with_pn_message_type(self): - message = "hi" - message_type = 'test_type' - encoded_message = url_encode(message) - - self.signal.channel("ch1").message(message).message_type(PNMessageType(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, - }) - - def test_signal_with_str_message_type(self): + def test_signal_with_message_type(self): message = "hi" message_type = 'test_type' encoded_message = url_encode(message) diff --git a/tests/integrational/asyncio/test_subscribe.py b/tests/integrational/asyncio/test_subscribe.py index c9517cb1..9824a28e 100644 --- a/tests/integrational/asyncio/test_subscribe.py +++ b/tests/integrational/asyncio/test_subscribe.py @@ -5,7 +5,6 @@ from unittest.mock import patch from pubnub.models.consumer.pubsub import PNMessageResult -from pubnub.models.consumer.message_type import PNMessageType from pubnub.pubnub_asyncio import PubNubAsyncio, AsyncioEnvelope, SubscribeListener from tests.helper import pnconf_env_copy, pnconf_enc_env_copy from tests.integrational.vcr_asyncio_sleeper import get_sleeper, VCR599Listener, VCR599ReconnectionManager @@ -483,7 +482,7 @@ async def test_subscribe_publish_message_type(event_loop, sleeper=asyncio.sleep) assert subscribe_envelope.subscription is None assert subscribe_envelope.message == message - assert isinstance(subscribe_envelope.type, PNMessageType) + assert isinstance(subscribe_envelope.type, str) assert str(subscribe_envelope.type) == message_type assert subscribe_envelope.timetoken > 0 diff --git a/tests/integrational/native_sync/test_fetch_messages.py b/tests/integrational/native_sync/test_fetch_messages.py index abfbe788..a4fe8912 100644 --- a/tests/integrational/native_sync/test_fetch_messages.py +++ b/tests/integrational/native_sync/test_fetch_messages.py @@ -148,4 +148,4 @@ def test_fetch_messages_actions_include_message_type(self): assert isinstance(envelope.result, PNFetchMessagesResult) history = envelope.result.channels[ch] assert len(history) == 1 - assert str(history[0].message_type) == 'pn_message' + assert str(history[0].message_type) == '0'