fcmpush 1.4.2 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/fcmpush/client.rb +7 -2
- data/lib/fcmpush/configuration.rb +4 -0
- data/lib/fcmpush/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5955f70af9ad3b06fbd33190d218cd115919476a8f3bd85b0f97d3d13ab94757
|
4
|
+
data.tar.gz: 5f267e161537e51aaeb44428de5fe024556cf865b2fb3178a2b5286418250ef8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9577b9638e6d3968377e648fb407f7ec5624bf4446c6dc04b1831e4da9d82022d78c7e96fd8bd0729fdb955366fa53fbf88e641b11a2da4ac2f7931bad14d3d5
|
7
|
+
data.tar.gz: b4a36fdfc16a8d9c85fc35373db504a1861c96b0f3cdbffd5feebcce7542d5d4bf969408f25854262317555e753ad2bedf0aa019012555364be6976869309b7f
|
data/lib/fcmpush/client.rb
CHANGED
@@ -23,7 +23,7 @@ module Fcmpush
|
|
23
23
|
access_token_response = v1_authorize
|
24
24
|
@access_token = access_token_response['access_token']
|
25
25
|
@access_token_expiry = Time.now.utc + access_token_response['expires_in']
|
26
|
-
@server_key = configuration.server_key
|
26
|
+
# @server_key = configuration.server_key
|
27
27
|
@connection = Net::HTTP::Persistent.new
|
28
28
|
|
29
29
|
if !configuration.proxy
|
@@ -112,7 +112,10 @@ module Fcmpush
|
|
112
112
|
uri = URI.join(TOPIC_DOMAIN, TOPIC_ENDPOINT_PREFIX + suffix)
|
113
113
|
uri.query = URI.encode_www_form(query) unless query.empty?
|
114
114
|
|
115
|
-
headers =
|
115
|
+
headers = v1_authorized_header(headers)
|
116
|
+
# cf. https://takanamito.hateblo.jp/entry/2020/07/04/175045
|
117
|
+
# cf. https://github.com/miyataka/fcmpush/issues/40
|
118
|
+
headers['access_token_auth'] = 'true'
|
116
119
|
post = Net::HTTP::Post.new(uri, headers)
|
117
120
|
post.body = make_subscription_body(topic, *instance_ids)
|
118
121
|
|
@@ -133,7 +136,9 @@ module Fcmpush
|
|
133
136
|
'Authorization' => "Bearer #{access_token}")
|
134
137
|
end
|
135
138
|
|
139
|
+
# @deprecated TODO: remove this method next version
|
136
140
|
def legacy_authorized_header(headers)
|
141
|
+
warn "[DEPRECATION] `legacy_authorized_header` is deprecated. Please use `v1_authorized_header` instead."
|
137
142
|
headers.merge('Content-Type' => 'application/json',
|
138
143
|
'Accept' => 'application/json',
|
139
144
|
'Authorization' => "Bearer #{server_key}")
|
@@ -15,7 +15,11 @@ module Fcmpush
|
|
15
15
|
# ENV['GOOGLE_PRIVATE_KEY'] = '-----BEGIN PRIVATE KEY-----\n...\n-----END PRIVATE KEY-----\n'
|
16
16
|
|
17
17
|
# regacy auth
|
18
|
+
# @deprecated TODO: remove this next version
|
18
19
|
@server_key = ENV['FCM_SERVER_KEY']
|
20
|
+
if @server_key
|
21
|
+
warn '[DEPRECATION] `FCM_SERVER_KEY` environment variable, also @server_key is deprecated. This attribute will be removed next version.'
|
22
|
+
end
|
19
23
|
|
20
24
|
# THIS IS EXPERIMENTAL
|
21
25
|
# NOT support `HTTPS_PROXY` environment variable. This feature not tested well on CI.
|
data/lib/fcmpush/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fcmpush
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- miyataka
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-identitytoolkit_v3
|