pubnub 4.4.0 → 4.5.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of pubnub might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.pubnub.yml +18 -2
- data/.travis.yml +4 -2
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +10 -1
- data/README.md +56 -17
- data/VERSION +1 -1
- data/fixtures/vcr_cassettes/examples/add_channels_to_push/001.yml +45 -0
- data/fixtures/vcr_cassettes/examples/add_channels_to_push/002.yml +45 -0
- data/fixtures/vcr_cassettes/examples/add_channels_to_push/003.yml +45 -0
- data/fixtures/vcr_cassettes/examples/add_channels_to_push/004.yml +45 -0
- data/fixtures/vcr_cassettes/examples/grant/1946.yml +8 -9
- data/fixtures/vcr_cassettes/examples/grant/1947.yml +8 -9
- data/fixtures/vcr_cassettes/examples/grant/1948.yml +8 -9
- data/fixtures/vcr_cassettes/examples/list_push_provisions/001.yml +46 -0
- data/fixtures/vcr_cassettes/examples/list_push_provisions/002.yml +45 -0
- data/fixtures/vcr_cassettes/examples/list_push_provisions/003.yml +45 -0
- data/fixtures/vcr_cassettes/examples/remove_channels_from_push/001.yml +45 -0
- data/fixtures/vcr_cassettes/examples/remove_channels_from_push/002.yml +45 -0
- data/fixtures/vcr_cassettes/examples/remove_channels_from_push/003.yml +45 -0
- data/fixtures/vcr_cassettes/examples/remove_device_from_push/001.yml +45 -0
- data/fixtures/vcr_cassettes/examples/remove_device_from_push/002.yml +45 -0
- data/fixtures/vcr_cassettes/examples/remove_device_from_push/003.yml +45 -0
- data/fixtures/vcr_cassettes/lib/events/get_all_channels_metadata.yml +1 -1
- data/fixtures/vcr_cassettes/lib/events/get_channel_members.yml +1 -1
- data/fixtures/vcr_cassettes/lib/events/{get_memberships.yml → get_memberships1.yml} +1 -1
- data/fixtures/vcr_cassettes/lib/events/get_memberships2.yml +37 -0
- data/fixtures/vcr_cassettes/lib/events/{get_uuid_metadata.yml → get_uuid_metadata1.yml} +0 -0
- data/fixtures/vcr_cassettes/lib/events/get_uuid_metadata2.yml +76 -0
- data/fixtures/vcr_cassettes/lib/events/remove_channel_members.yml +1 -1
- data/fixtures/vcr_cassettes/lib/events/{remove_memberships.yml → remove_memberships1.yml} +0 -0
- data/fixtures/vcr_cassettes/lib/events/remove_memberships2.yml +39 -0
- data/fixtures/vcr_cassettes/lib/events/{remove_uuid_metadata.yml → remove_uuid_metadata1.yml} +0 -0
- data/fixtures/vcr_cassettes/lib/events/remove_uuid_metadata2.yml +76 -0
- data/fixtures/vcr_cassettes/lib/events/{set_memberships.yml → set_memberships1.yml} +0 -0
- data/fixtures/vcr_cassettes/lib/events/set_memberships2.yml +39 -0
- data/fixtures/vcr_cassettes/lib/events/{set_uuid_metadata.yml → set_uuid_metadata1.yml} +0 -0
- data/fixtures/vcr_cassettes/lib/events/set_uuid_metadata2.yml +78 -0
- data/lib/pubnub/client.rb +4 -1
- data/lib/pubnub/event.rb +3 -1
- data/lib/pubnub/events/add_channels_to_push.rb +29 -13
- data/lib/pubnub/events/get_all_channels_metadata.rb +13 -1
- data/lib/pubnub/events/get_all_uuid_metadata.rb +13 -1
- data/lib/pubnub/events/get_channel_members.rb +21 -1
- data/lib/pubnub/events/get_channel_metadata.rb +6 -1
- data/lib/pubnub/events/get_memberships.rb +22 -2
- data/lib/pubnub/events/get_uuid_metadata.rb +7 -2
- data/lib/pubnub/events/grant.rb +1 -1
- data/lib/pubnub/events/list_push_provisions.rb +29 -12
- data/lib/pubnub/events/remove_channel_members.rb +22 -2
- data/lib/pubnub/events/remove_channels_from_push.rb +29 -13
- data/lib/pubnub/events/remove_device_from_push.rb +30 -14
- data/lib/pubnub/events/remove_memberships.rb +23 -3
- data/lib/pubnub/events/remove_uuid_metadata.rb +1 -1
- data/lib/pubnub/events/set_channel_members.rb +21 -1
- data/lib/pubnub/events/set_channel_metadata.rb +6 -1
- data/lib/pubnub/events/set_memberships.rb +22 -2
- data/lib/pubnub/events/set_uuid_metadata.rb +7 -2
- data/lib/pubnub/formatter.rb +28 -1
- data/lib/pubnub/validators/add_channels_to_push.rb +52 -0
- data/lib/pubnub/validators/grant.rb +1 -1
- data/lib/pubnub/validators/list_push_provisions.rb +43 -0
- data/lib/pubnub/validators/remove_channels_from_push.rb +52 -0
- data/lib/pubnub/validators/remove_device_from_push.rb +43 -0
- data/lib/pubnub/version.rb +1 -1
- data/spec/examples/add_channels_to_push_spec.rb +178 -0
- data/spec/examples/{grant_examples_spec.rb → grant_examples_1_spec.rb} +0 -9009
- data/spec/examples/grant_examples_2_spec.rb +9107 -0
- data/spec/examples/list_push_provisions_spec.rb +164 -0
- data/spec/examples/presence_examples_spec.rb +222 -186
- data/spec/examples/remove_channels_from_push_spec.rb +164 -0
- data/spec/examples/remove_device_from_push_spec.rb +164 -0
- data/spec/examples/revoke_examples_1_spec.rb +27013 -0
- data/spec/examples/revoke_examples_2_spec.rb +27012 -0
- data/spec/examples/revoke_examples_3_spec.rb +17967 -0
- data/spec/examples/status_request_message_count_exceeded_spec.rb +4 -1
- data/spec/examples/subscribe_examples_1_spec.rb +26972 -0
- data/spec/examples/subscribe_examples_2_spec.rb +19575 -0
- data/spec/lib/connection_callback_spec.rb +4 -3
- data/spec/lib/events/membership_spec.rb +38 -11
- data/spec/lib/events/presence_delta_spec.rb +9 -6
- data/spec/lib/events/presence_spec.rb +13 -7
- data/spec/lib/events/subscribe_spec.rb +56 -32
- data/spec/lib/events/uuid_metadata_spec.rb +36 -6
- data/spec/lib/super_admin_spec.rb +8 -4
- data/spec/spec_helper.rb +23 -7
- metadata +53 -15
- data/lib/pubnub/validators/push.rb +0 -43
- data/spec/examples/revoke_examples_spec.rb +0 -71950
- data/spec/examples/subscribe_examples_spec.rb +0 -45184
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f99bc04274ad4c925ccaeb22554add0934aa9579f35ad114c68f5a361927aa7b
|
4
|
+
data.tar.gz: 326e53a9a9d7d6fc3cc3cdf4563dad813c91f98bbfb5268e148fa9d842c60cb7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '09eb1c5f639e76233894bf7ddac49b6729cc6cb27a457535c7a0c3315da85ade49edd753394ce2ba1539ee6e20500b5530f6f2c7dd3503dad79471c45d613eac'
|
7
|
+
data.tar.gz: e0374ca5a489dc8d89ec8a5cff6f48c5684f6642cf1823df88ce3ca4793c2c8226e807841d7908ee859205eba813e019b9c3f517645145dfc2152d486428604c
|
data/.pubnub.yml
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
---
|
2
|
-
version: "4.
|
2
|
+
version: "4.5.0"
|
3
3
|
changelog:
|
4
|
+
-
|
5
|
+
changes:
|
6
|
+
-
|
7
|
+
text: "Add support for APNS2 device/channel management."
|
8
|
+
type: feature
|
9
|
+
date: 03-12-2020
|
10
|
+
version: v4.5.0
|
4
11
|
-
|
5
12
|
changes:
|
6
13
|
-
|
@@ -64,7 +71,7 @@ changelog:
|
|
64
71
|
text: "Resolved issue with subscribe loop where the connection was reinitiated after receiving a 4xx error code from the server"
|
65
72
|
type: bugfix
|
66
73
|
date: 14-02-2020
|
67
|
-
version: "4.
|
74
|
+
version: "4.5.0"
|
68
75
|
-
|
69
76
|
changes:
|
70
77
|
-
|
@@ -372,6 +379,15 @@ features:
|
|
372
379
|
- PUBLISH-SYNC
|
373
380
|
- PUBLISH-ASYNC
|
374
381
|
- PUBLISH-MESSAGE-TTL
|
382
|
+
push:
|
383
|
+
- PUSH-ADD-DEVICE-TO-CHANNELS
|
384
|
+
- PUSH-REMOVE-DEVICE-FROM-CHANNELS
|
385
|
+
- PUSH-LIST-CHANNELS-FROM-DEVICE
|
386
|
+
- PUSH-REMOVE-DEVICE
|
387
|
+
- PUSH-TYPE-APNS
|
388
|
+
- PUSH-TYPE-APNS2
|
389
|
+
- PUSH-TYPE-FCM
|
390
|
+
- PUSH-TYPE-MPNS
|
375
391
|
storage:
|
376
392
|
- STORAGE-REVERSE
|
377
393
|
- STORAGE-INCLUDE-TIMETOKEN
|
data/.travis.yml
CHANGED
@@ -31,6 +31,8 @@ jobs:
|
|
31
31
|
script: bundle exec rspec
|
32
32
|
- name: 'Ruby JRuby'
|
33
33
|
rvm: 'jruby-head'
|
34
|
-
env: JRUBY_OPTS="--server -J-
|
34
|
+
env: JRUBY_TEST=true NO_COVERAGE=true JRUBY_OPTS="--server -J-Xms2048m -J-Xmx2048m -J-XX:-UseGCOverheadLimit -J-XX:+CMSClassUnloadingEnabled"
|
35
35
|
jdk: oraclejdk11
|
36
|
-
script:
|
36
|
+
script:
|
37
|
+
- jruby -S rspec ./spec/examples/
|
38
|
+
- jruby -S rspec ./spec/lib/
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
pubnub (4.
|
4
|
+
pubnub (4.5.0)
|
5
5
|
addressable (>= 2.0.0)
|
6
6
|
concurrent-ruby (~> 1.1.5)
|
7
7
|
concurrent-ruby-edge (~> 0.5.0)
|
@@ -68,10 +68,12 @@ GEM
|
|
68
68
|
dry-equalizer (~> 0.2)
|
69
69
|
dry-initializer (~> 3.0)
|
70
70
|
dry-schema (~> 1.5)
|
71
|
+
ffi (1.13.1-java)
|
71
72
|
hashdiff (1.0.1)
|
72
73
|
httpclient (2.8.3)
|
73
74
|
interception (0.5)
|
74
75
|
json (2.3.1)
|
76
|
+
json (2.3.1-java)
|
75
77
|
method_source (1.0.0)
|
76
78
|
parallel (1.19.2)
|
77
79
|
parser (2.7.1.4)
|
@@ -79,6 +81,10 @@ GEM
|
|
79
81
|
pry (0.13.1)
|
80
82
|
coderay (~> 1.1)
|
81
83
|
method_source (~> 1.0)
|
84
|
+
pry (0.13.1-java)
|
85
|
+
coderay (~> 1.1)
|
86
|
+
method_source (~> 1.0)
|
87
|
+
spoon (~> 0.0)
|
82
88
|
pry-rescue (1.5.2)
|
83
89
|
interception (>= 0.5)
|
84
90
|
pry (>= 0.12.0)
|
@@ -122,6 +128,8 @@ GEM
|
|
122
128
|
docile (~> 1.1)
|
123
129
|
simplecov-html (~> 0.11)
|
124
130
|
simplecov-html (0.12.2)
|
131
|
+
spoon (0.0.6)
|
132
|
+
ffi
|
125
133
|
timers (4.3.0)
|
126
134
|
unicode-display_width (1.7.0)
|
127
135
|
vcr (6.0.0)
|
@@ -131,6 +139,7 @@ GEM
|
|
131
139
|
hashdiff (>= 0.4.0, < 2.0.0)
|
132
140
|
|
133
141
|
PLATFORMS
|
142
|
+
java
|
134
143
|
ruby
|
135
144
|
|
136
145
|
DEPENDENCIES
|
data/README.md
CHANGED
@@ -1,34 +1,73 @@
|
|
1
|
+
# PubNub Ruby SDK
|
2
|
+
|
1
3
|
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/b744287bb0324e2883f95525b12cf19f)](https://www.codacy.com/app/blazeroot/ruby?utm_source=github.com&utm_medium=referral&utm_content=pubnub/ruby&utm_campaign=badger)
|
2
4
|
[![Codacy Badge](https://api.codacy.com/project/badge/Coverage/b744287bb0324e2883f95525b12cf19f)](https://www.codacy.com/app/blazeroot/ruby?utm_source=github.com&utm_medium=referral&utm_content=pubnub/ruby&utm_campaign=Badge_Coverage)
|
3
5
|
[![Build Status](https://travis-ci.org/pubnub/ruby.svg?branch=master)](https://travis-ci.org/pubnub/ruby)
|
4
6
|
|
5
|
-
|
7
|
+
This is the official PubNub Ruby SDK repository.
|
8
|
+
|
9
|
+
PubNub takes care of the infrastructure and APIs needed for the realtime communication layer of your application. Work on your app's logic and let PubNub handle sending and receiving data across the world in less than 100ms.
|
10
|
+
|
11
|
+
## Get keys
|
12
|
+
|
13
|
+
You will need the publish and subscribe keys to authenticate your app. Get your keys from the [Admin Portal](https://dashboard.pubnub.com/).
|
14
|
+
|
15
|
+
## Configure PubNub
|
16
|
+
|
17
|
+
1. Integrate PubNub into your project using RubyGems:
|
18
|
+
|
19
|
+
```bash
|
20
|
+
gem install pubnub
|
21
|
+
```
|
6
22
|
|
7
|
-
|
8
|
-
Available at https://www.pubnub.com/docs/ruby/pubnub-ruby-sdk-v4 **v4.x**
|
23
|
+
1. Create a new `App.rb` file and add the following code.
|
9
24
|
|
10
|
-
|
25
|
+
```ruby
|
26
|
+
require 'pubnub'
|
11
27
|
|
12
|
-
|
13
|
-
|
28
|
+
pubnub = Pubnub.new(
|
29
|
+
subscribe_key: :mySubscribeKey,
|
30
|
+
publish_key: :myPublishKey,
|
31
|
+
uuid: :myUniqueUUID
|
32
|
+
)
|
33
|
+
```
|
14
34
|
|
15
|
-
|
35
|
+
This is the minimum configuration you need to send and receive messages with PubNub.
|
16
36
|
|
37
|
+
## Add event listeners
|
17
38
|
|
18
|
-
|
39
|
+
```ruby
|
40
|
+
callback = Pubnub::SubscribeCallback.new(
|
41
|
+
message: ->(envelope) {
|
42
|
+
puts "MESSAGE: # {puts envelope.result[:data][:message]['msg']}"
|
43
|
+
},
|
44
|
+
presence: ->(envelope) {
|
45
|
+
puts "PRESENCE: #{envelope.result[:data]}"
|
46
|
+
}
|
47
|
+
)
|
48
|
+
pubnub.add_listener(callback: callback)
|
49
|
+
```
|
19
50
|
|
20
|
-
|
51
|
+
## Publish and subscribe
|
21
52
|
|
22
|
-
|
23
|
-
|
53
|
+
```ruby
|
54
|
+
pubnub.subscribe(
|
55
|
+
channels: ['my_channel'],
|
56
|
+
with_presence: true
|
57
|
+
)
|
24
58
|
|
25
|
-
|
59
|
+
pubnub.publish(
|
60
|
+
channel: 'my_channel',
|
61
|
+
message: { text: 'Hello world' }
|
62
|
+
) do |envelope|
|
63
|
+
puts envelope.status
|
64
|
+
end
|
65
|
+
```
|
26
66
|
|
27
|
-
|
67
|
+
## Documentation
|
28
68
|
|
29
|
-
|
69
|
+
[API reference for Ruby](https://www.pubnub.com/docs/ruby/pubnub-ruby-sdk)
|
30
70
|
|
31
|
-
|
32
|
-
PubNub 3.7.3 is NOT compatible with earlier than 3.4 versions of Pubnub Ruby Client.
|
71
|
+
## Support
|
33
72
|
|
34
|
-
|
73
|
+
If you **need help** or have a **general question**, contact <support@pubnub.com>.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
4.
|
1
|
+
4.5.0
|
@@ -0,0 +1,45 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://ps.pndsn.com/v1/push/sub-key/sub-a-mock-key/devices/815ee724ccb0a6a84dc303be8ccbaa00d1c84dde6bcae6721b08f92100951113?add=demo1,demo2&auth=ruby-test-auth-client-one&pnsdk=PubNub-Ruby/4.4.0&type=apns&uuid=ruby-test-uuid-client-one
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- HTTPClient/1.0 (2.8.3, ruby 2.6.6 (2020-03-31))
|
12
|
+
Accept:
|
13
|
+
- "*/*"
|
14
|
+
Date:
|
15
|
+
- Tue, 17 Nov 2020 14:50:57 GMT
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Date:
|
22
|
+
- Tue, 17 Nov 2020 14:50:57 GMT
|
23
|
+
Content-Type:
|
24
|
+
- text/javascript; charset="UTF-8"
|
25
|
+
Content-Length:
|
26
|
+
- '24'
|
27
|
+
Connection:
|
28
|
+
- keep-alive
|
29
|
+
Cache-Control:
|
30
|
+
- no-cache
|
31
|
+
Access-Control-Allow-Origin:
|
32
|
+
- "*"
|
33
|
+
Access-Control-Allow-Methods:
|
34
|
+
- GET, POST, DELETE, OPTIONS
|
35
|
+
Accept-Ranges:
|
36
|
+
- bytes
|
37
|
+
Age:
|
38
|
+
- '0'
|
39
|
+
Server:
|
40
|
+
- Pubnub
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: '[1, "Modified Channels"]'
|
44
|
+
recorded_at: Tue, 17 Nov 2020 17:46:16 GMT
|
45
|
+
recorded_with: VCR 6.0.0
|
@@ -0,0 +1,45 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://ps.pndsn.com/v2/push/sub-key/sub-a-mock-key/devices-apns2/815ee724ccb0a6a84dc303be8ccbaa00d1c84dde6bcae6721b08f92100951113?add=demo1,demo2&auth=ruby-test-auth-client-one&environment=development&pnsdk=PubNub-Ruby/4.4.0&topic=ruby_test&uuid=ruby-test-uuid-client-one
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- HTTPClient/1.0 (2.8.3, ruby 2.6.6 (2020-03-31))
|
12
|
+
Accept:
|
13
|
+
- "*/*"
|
14
|
+
Date:
|
15
|
+
- Tue, 17 Nov 2020 19:01:25 GMT
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Date:
|
22
|
+
- Tue, 17 Nov 2020 19:01:25 GMT
|
23
|
+
Content-Type:
|
24
|
+
- text/javascript; charset="UTF-8"
|
25
|
+
Content-Length:
|
26
|
+
- '24'
|
27
|
+
Connection:
|
28
|
+
- keep-alive
|
29
|
+
Cache-Control:
|
30
|
+
- no-cache
|
31
|
+
Access-Control-Allow-Origin:
|
32
|
+
- "*"
|
33
|
+
Access-Control-Allow-Methods:
|
34
|
+
- GET, POST, DELETE, OPTIONS
|
35
|
+
Accept-Ranges:
|
36
|
+
- bytes
|
37
|
+
Age:
|
38
|
+
- '0'
|
39
|
+
Server:
|
40
|
+
- Pubnub
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: '[1, "Modified Channels"]'
|
44
|
+
recorded_at: Tue, 17 Nov 2020 19:01:25 GMT
|
45
|
+
recorded_with: VCR 6.0.0
|
@@ -0,0 +1,45 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://ps.pndsn.com/v2/push/sub-key/sub-a-mock-key/devices-apns2/815ee724ccb0a6a84dc303be8ccbaa00d1c84dde6bcae6721b08f92100951113?add=demo1,demo2&auth=ruby-test-auth-client-one&environment=production&pnsdk=PubNub-Ruby/4.4.0&topic=ruby_test&uuid=ruby-test-uuid-client-one
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- HTTPClient/1.0 (2.8.3, ruby 2.6.6 (2020-03-31))
|
12
|
+
Accept:
|
13
|
+
- "*/*"
|
14
|
+
Date:
|
15
|
+
- Tue, 17 Nov 2020 19:30:00 GMT
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Date:
|
22
|
+
- Tue, 17 Nov 2020 19:30:01 GMT
|
23
|
+
Content-Type:
|
24
|
+
- text/javascript; charset="UTF-8"
|
25
|
+
Content-Length:
|
26
|
+
- '24'
|
27
|
+
Connection:
|
28
|
+
- keep-alive
|
29
|
+
Cache-Control:
|
30
|
+
- no-cache
|
31
|
+
Access-Control-Allow-Origin:
|
32
|
+
- "*"
|
33
|
+
Access-Control-Allow-Methods:
|
34
|
+
- GET, POST, DELETE, OPTIONS
|
35
|
+
Accept-Ranges:
|
36
|
+
- bytes
|
37
|
+
Age:
|
38
|
+
- '0'
|
39
|
+
Server:
|
40
|
+
- Pubnub
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: '[1, "Modified Channels"]'
|
44
|
+
recorded_at: Tue, 17 Nov 2020 19:30:01 GMT
|
45
|
+
recorded_with: VCR 6.0.0
|
@@ -0,0 +1,45 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://ps.pndsn.com/v2/push/sub-key/sub-a-mock-key/devices-apns2/invalid_token?add=demo1,demo2&auth=ruby-test-auth-client-one&environment=production&pnsdk=PubNub-Ruby/4.4.0&topic=ruby_test&uuid=ruby-test-uuid-client-one
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- HTTPClient/1.0 (2.8.3, ruby 2.6.6 (2020-03-31))
|
12
|
+
Accept:
|
13
|
+
- "*/*"
|
14
|
+
Date:
|
15
|
+
- Tue, 17 Nov 2020 19:31:10 GMT
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 400
|
19
|
+
message: Bad Request
|
20
|
+
headers:
|
21
|
+
Date:
|
22
|
+
- Tue, 17 Nov 2020 19:31:10 GMT
|
23
|
+
Content-Type:
|
24
|
+
- text/javascript; charset="UTF-8"
|
25
|
+
Content-Length:
|
26
|
+
- '33'
|
27
|
+
Connection:
|
28
|
+
- keep-alive
|
29
|
+
Cache-Control:
|
30
|
+
- no-cache
|
31
|
+
Access-Control-Allow-Origin:
|
32
|
+
- "*"
|
33
|
+
Access-Control-Allow-Methods:
|
34
|
+
- GET, POST, DELETE, OPTIONS
|
35
|
+
Accept-Ranges:
|
36
|
+
- bytes
|
37
|
+
Age:
|
38
|
+
- '0'
|
39
|
+
Server:
|
40
|
+
- Pubnub
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: '{"error": "Invalid device token"}'
|
44
|
+
recorded_at: Tue, 17 Nov 2020 19:31:10 GMT
|
45
|
+
recorded_with: VCR 6.0.0
|
@@ -2,28 +2,28 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: http://ps.pndsn.com/v2/auth/grant/sub-key/sub-a-mock-key?auth=
|
5
|
+
uri: http://ps.pndsn.com/v2/auth/grant/sub-key/sub-a-mock-key?auth=demo&d=0&g=1&m=1&pnsdk=PubNub-Ruby/4.4.0&r=1&signature=v2.v9I738j7Zuks-MiomTBSKAYKviUDyUK8FtNPkPp8txQ&target-uuid=bob×tamp=1605101896&ttl=1440&u=1&uuid=ruby-test-uuid-client-one&w=1
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- HTTPClient/1.0 (2.8.
|
11
|
+
- HTTPClient/1.0 (2.8.3, ruby 2.6.3 (2019-04-16))
|
12
12
|
Accept:
|
13
13
|
- "*/*"
|
14
14
|
Date:
|
15
|
-
- Wed,
|
15
|
+
- Wed, 11 Nov 2020 13:38:16 GMT
|
16
16
|
response:
|
17
17
|
status:
|
18
18
|
code: 200
|
19
19
|
message: OK
|
20
20
|
headers:
|
21
21
|
Date:
|
22
|
-
- Wed,
|
22
|
+
- Wed, 11 Nov 2020 13:38:16 GMT
|
23
23
|
Content-Type:
|
24
24
|
- text/javascript; charset=UTF-8
|
25
25
|
Content-Length:
|
26
|
-
- '
|
26
|
+
- '239'
|
27
27
|
Connection:
|
28
28
|
- keep-alive
|
29
29
|
Access-Control-Allow-Origin:
|
@@ -36,8 +36,7 @@ http_interactions:
|
|
36
36
|
- no-cache, no-store, must-revalidate
|
37
37
|
body:
|
38
38
|
encoding: UTF-8
|
39
|
-
string: '{"message":"Success","payload":{"level":"
|
39
|
+
string: '{"message":"Success","payload":{"level":"uuid","subscribe_key":"sub-a-mock-key","ttl":1440,"uuids":{"bob":{"auths":{"demo":{"r":1,"w":1,"m":1,"d":0,"g":1,"u":1,"j":0}}}}},"service":"Access
|
40
40
|
Manager","status":200}'
|
41
|
-
|
42
|
-
|
43
|
-
recorded_with: VCR 3.0.1
|
41
|
+
recorded_at: Wed, 11 Nov 2020 13:38:16 GMT
|
42
|
+
recorded_with: VCR 6.0.0
|