omniauth-etencent 0.2.0 → 0.3.0
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/Gemfile.lock +1 -1
- data/lib/omniauth-etencent/version.rb +1 -1
- data/lib/omniauth/strategies/etencent.rb +9 -2
- 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: 69da7f565b1e3c646ac1a9569cd11f5ff19c915e507d54a13e5192667eb027f3
|
|
4
|
+
data.tar.gz: e97d98528f351dd8cfd9838a1ddea3bbc46f71b0d66ea0d26c407d108f45add3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec3af148ec3c52d40a76647a8eeba4325bb85b6917ba7bcee09b74dc9e77186923288c23f789dc24503e7034f8e37e630a2efc5e5d80d027e001f0bda2138cb8
|
|
7
|
+
data.tar.gz: ca45d7c111406271158212a11e0beb26d70b53f7b8a4363c7b8075a703261d144ee031957fffca183a338d9938fccaaa789494739a92058364a9d89dbc7abd28
|
data/Gemfile.lock
CHANGED
|
@@ -11,8 +11,6 @@ module OmniAuth
|
|
|
11
11
|
extract_access_token: ::OmniAuth::Etencent::AccessToken
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
option :authorize_options, %i[scope state account_type account_display_number]
|
|
15
|
-
|
|
16
14
|
option :sandbox, false
|
|
17
15
|
|
|
18
16
|
def authorize_params
|
|
@@ -57,6 +55,11 @@ module OmniAuth
|
|
|
57
55
|
authorizer_info['scope_list']
|
|
58
56
|
end
|
|
59
57
|
|
|
58
|
+
def request_phase
|
|
59
|
+
session['omniauth.redirect_uri'] = callback_url
|
|
60
|
+
super
|
|
61
|
+
end
|
|
62
|
+
|
|
60
63
|
protected
|
|
61
64
|
|
|
62
65
|
def client
|
|
@@ -71,6 +74,10 @@ module OmniAuth
|
|
|
71
74
|
def api_base_url
|
|
72
75
|
options.sandbox ? 'https://sandbox-api.e.qq.com' : 'https://api.e.qq.com'
|
|
73
76
|
end
|
|
77
|
+
|
|
78
|
+
def token_params
|
|
79
|
+
super.merge(authorization_code: request.params['authorization_code'], redirect_uri: session['omniauth.redirect_uri'])
|
|
80
|
+
end
|
|
74
81
|
end
|
|
75
82
|
end
|
|
76
83
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-etencent
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- jimcheung
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-06-
|
|
11
|
+
date: 2021-06-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: omniauth
|