oauth2 1.4.7 → 1.4.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +90 -72
- data/CONTRIBUTING.md +44 -0
- data/LICENSE +1 -1
- data/README.md +331 -128
- data/SECURITY.md +26 -0
- data/lib/oauth2/access_token.rb +4 -2
- data/lib/oauth2/authenticator.rb +3 -1
- data/lib/oauth2/client.rb +91 -56
- data/lib/oauth2/error.rb +3 -1
- data/lib/oauth2/mac_token.rb +19 -19
- data/lib/oauth2/response.rb +2 -0
- data/lib/oauth2/strategy/assertion.rb +3 -1
- data/lib/oauth2/strategy/auth_code.rb +3 -1
- data/lib/oauth2/strategy/base.rb +2 -0
- data/lib/oauth2/strategy/client_credentials.rb +3 -1
- data/lib/oauth2/strategy/implicit.rb +3 -1
- data/lib/oauth2/strategy/password.rb +3 -1
- data/lib/oauth2/version.rb +1 -1
- data/lib/oauth2.rb +2 -0
- metadata +68 -98
- data/spec/helper.rb +0 -37
- data/spec/oauth2/access_token_spec.rb +0 -216
- data/spec/oauth2/authenticator_spec.rb +0 -84
- data/spec/oauth2/client_spec.rb +0 -506
- data/spec/oauth2/mac_token_spec.rb +0 -117
- data/spec/oauth2/response_spec.rb +0 -90
- data/spec/oauth2/strategy/assertion_spec.rb +0 -58
- data/spec/oauth2/strategy/auth_code_spec.rb +0 -107
- data/spec/oauth2/strategy/base_spec.rb +0 -5
- data/spec/oauth2/strategy/client_credentials_spec.rb +0 -69
- data/spec/oauth2/strategy/implicit_spec.rb +0 -26
- data/spec/oauth2/strategy/password_spec.rb +0 -55
- data/spec/oauth2/version_spec.rb +0 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e5379c78dd69a32791b1666a5043d412d8131fa091f475a0d72c72174d2bbbdb
|
4
|
+
data.tar.gz: cd05652aaac76e61d897026a47238b11f9c4037e9b8561575d65bb882bc6e449
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3c87c1c747af12a7864e5b2fdd8ad35c6eac00a7f97a2cb5feb52dcc897c9c1501b409fd80852b9deb311b143bc3d2fceabb2fc902e2a05442d81cc8d373571
|
7
|
+
data.tar.gz: 2cd3ffb9e5e76fc1ed95a040a9821b4abef44fe4e1d9e279bee0fb6126145e01804ddbdeec94135c426f3e6a75991ec282020eb12180166e9d6610a1595b3027
|
data/CHANGELOG.md
CHANGED
@@ -1,48 +1,67 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
|
-
## unreleased
|
4
|
+
## [unreleased]
|
5
5
|
|
6
|
-
## [1.4.
|
6
|
+
## [1.4.11] - 2022-09-16
|
7
|
+
- Complete migration to main branch as default (@pboling)
|
8
|
+
- Complete migration to Gitlab, updating all links, and references in VCS-managed files (@pboling)
|
7
9
|
|
8
|
-
|
10
|
+
## [1.4.10] - 2022-07-01
|
11
|
+
- FIPS Compatibility [#587](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/587) (@akostadinov)
|
9
12
|
|
10
|
-
## [1.4.
|
13
|
+
## [1.4.9] - 2022-02-20
|
14
|
+
- Fixes compatibility with Faraday v2 [572](https://gitlab.com/oauth-xx/oauth2/-/issues/572)
|
15
|
+
- Includes supported versions of Faraday in test matrix:
|
16
|
+
- Faraday ~> 2.2.0 with Ruby >= 2.6
|
17
|
+
- Faraday ~> 1.10 with Ruby >= 2.4
|
18
|
+
- Faraday ~> 0.17.3 with Ruby >= 1.9
|
19
|
+
- Add Windows and MacOS to test matrix
|
11
20
|
|
12
|
-
|
13
|
-
-
|
14
|
-
-
|
21
|
+
## [1.4.8] - 2022-02-18
|
22
|
+
- MFA is now required to push new gem versions (@pboling)
|
23
|
+
- README overhaul w/ new Ruby Version and Engine compatibility policies (@pboling)
|
24
|
+
- [#569](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/569) Backport fixes ([#561](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/561) by @ryogift), and add more fixes, to allow faraday 1.x and 2.x (@jrochkind)
|
25
|
+
- Improve Code Coverage tracking (Coveralls, CodeCov, CodeClimate), and enable branch coverage (@pboling)
|
26
|
+
- Add CodeQL, Security Policy, Funding info (@pboling)
|
27
|
+
- Added Ruby 3.1, jruby, jruby-head, truffleruby, truffleruby-head to build matrix (@pboling)
|
28
|
+
- [#543](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/543) - Support for more modern Open SSL libraries (@pboling)
|
15
29
|
|
16
|
-
## [1.4.
|
30
|
+
## [1.4.7] - 2021-03-19
|
31
|
+
- [#541](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/541) - Backport fix to expires_at handling [#533](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/533) to 1-4-stable branch. (@dobon)
|
17
32
|
|
18
|
-
|
19
|
-
- [#
|
33
|
+
## [1.4.6] - 2021-03-19
|
34
|
+
- [#540](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/540) - Add VERSION constant (@pboling)
|
35
|
+
- [#537](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/537) - Fix crash in OAuth2::Client#get_token (@anderscarling)
|
36
|
+
- [#538](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/538) - Remove reliance on globally included OAuth2 in tests, analogous to [#539](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/539) on main branch (@anderscarling)
|
20
37
|
|
21
|
-
## [1.4.
|
38
|
+
## [1.4.5] - 2021-03-18
|
39
|
+
- [#535](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/535) - Compatibility with range of supported Ruby OpenSSL versions, Rubocop updates, Github Actions, analogous to [#536](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/536) on main branch (@pboling)
|
40
|
+
- [#518](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/518) - Add extract_access_token option to OAuth2::Client (@jonspalmer)
|
41
|
+
- [#507](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/507) - Fix camel case content type, response keys (@anvox)
|
42
|
+
- [#500](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/500) - Fix YARD documentation formatting (@olleolleolle)
|
22
43
|
|
23
|
-
|
44
|
+
## [1.4.4] - 2020-02-12
|
45
|
+
- [#408](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/408) - Fixed expires_at for formatted time (@Lomey)
|
24
46
|
|
25
47
|
## [1.4.3] - 2020-01-29
|
26
|
-
|
27
|
-
- [#
|
28
|
-
- [#495](https://github.com/oauth-xx/oauth2/pull/495) - support additional types of access token requests (@SteveyblamFreeagent, @thomcorley, @dgholz)
|
48
|
+
- [#483](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/483) - add project metadata to gemspec (@orien)
|
49
|
+
- [#495](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/495) - support additional types of access token requests (@SteveyblamFreeagent, @thomcorley, @dgholz)
|
29
50
|
- Adds support for private_key_jwt and tls_client_auth
|
30
|
-
- [#433](https://
|
51
|
+
- [#433](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/433) - allow field names with square brackets and numbers in params (@asm256)
|
31
52
|
|
32
53
|
## [1.4.2] - 2019-10-01
|
33
|
-
|
34
|
-
-
|
35
|
-
- officially support Ruby 2.6 and truffleruby
|
54
|
+
- [#478](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/478) - support latest version of faraday & fix build (@pboling)
|
55
|
+
- Officially support Ruby 2.6 and truffleruby
|
36
56
|
|
37
57
|
## [1.4.1] - 2018-10-13
|
38
|
-
|
39
|
-
- [#
|
40
|
-
- [#
|
41
|
-
- [#
|
42
|
-
- [#
|
43
|
-
- [#
|
44
|
-
- [#
|
45
|
-
- [#423](https://github.com/oauth-xx/oauth2/pull/423) - update [builds](https://travis-ci.org/oauth-xx/oauth2/builds), [Rakefile](https://github.com/oauth-xx/oauth2/blob/1-4-stable/Rakefile) (@pboling)
|
58
|
+
- [#417](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/417) - update jwt dependency (@thewoolleyman)
|
59
|
+
- [#419](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/419) - remove rubocop dependency (temporary, added back in [#423](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/423)) (@pboling)
|
60
|
+
- [#418](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/418) - update faraday dependency (@pboling)
|
61
|
+
- [#420](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/420) - update [oauth2.gemspec](https://gitlab.com/oauth-xx/oauth2/-/blob/1-4-stable/oauth2.gemspec) (@pboling)
|
62
|
+
- [#421](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/421) - fix [CHANGELOG.md](https://gitlab.com/oauth-xx/oauth2/-/blob/1-4-stable/CHANGELOG.md) for previous releases (@pboling)
|
63
|
+
- [#422](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/422) - update [LICENSE](https://gitlab.com/oauth-xx/oauth2/-/blob/1-4-stable/LICENSE) and [README.md](https://gitlab.com/oauth-xx/oauth2/-/blob/1-4-stable/README.md) (@pboling)
|
64
|
+
- [#423](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/423) - update [builds](https://travis-ci.org/oauth-xx/oauth2/builds), [Rakefile](https://gitlab.com/oauth-xx/oauth2/-/blob/1-4-stable/Rakefile) (@pboling)
|
46
65
|
- officially document supported Rubies
|
47
66
|
* Ruby 1.9.3
|
48
67
|
* Ruby 2.0.0
|
@@ -62,19 +81,16 @@ All notable changes to this project will be documented in this file.
|
|
62
81
|
[jruby-9.2]: https://www.jruby.org/2018/05/24/jruby-9-2-0-0.html
|
63
82
|
|
64
83
|
## [1.4.0] - 2017-06-09
|
65
|
-
|
66
84
|
- Drop Ruby 1.8.7 support (@sferik)
|
67
85
|
- Fix some RuboCop offenses (@sferik)
|
68
86
|
- _Dependency_: Remove Yardstick (@sferik)
|
69
87
|
- _Dependency_: Upgrade Faraday to 0.12 (@sferik)
|
70
88
|
|
71
89
|
## [1.3.1] - 2017-03-03
|
72
|
-
|
73
90
|
- Add support for Ruby 2.4.0 (@pschambacher)
|
74
91
|
- _Dependency_: Upgrade Faraday to Faraday 0.11 (@mcfiredrill, @rhymes, @pschambacher)
|
75
92
|
|
76
93
|
## [1.3.0] - 2016-12-28
|
77
|
-
|
78
94
|
- Add support for header-based authentication to the `Client` so it can be used across the library (@bjeanes)
|
79
95
|
- Default to header-based authentication when getting a token from an authorisation code (@maletor)
|
80
96
|
- **Breaking**: Allow an `auth_scheme` (`:basic_auth` or `:request_body`) to be set on the client, defaulting to `:request_body` to maintain backwards compatibility (@maletor, @bjeanes)
|
@@ -84,32 +100,27 @@ All notable changes to this project will be documented in this file.
|
|
84
100
|
- Add support for Faraday 0.10 (@rhymes)
|
85
101
|
|
86
102
|
## [1.2.0] - 2016-07-01
|
87
|
-
|
88
103
|
- Properly handle encoding of error responses (so we don't blow up, for example, when Google's response includes a ∞) (@Motoshi-Nishihira)
|
89
104
|
- Make a copy of the options hash in `AccessToken#from_hash` to avoid accidental mutations (@Linuus)
|
90
105
|
- Use `raise` rather than `fail` to throw exceptions (@sferik)
|
91
106
|
|
92
107
|
## [1.1.0] - 2016-01-30
|
93
|
-
|
94
108
|
- Various refactors (eliminating `Hash#merge!` usage in `AccessToken#refresh!`, use `yield` instead of `#call`, freezing mutable objects in constants, replacing constants with class variables) (@sferik)
|
95
109
|
- Add support for Rack 2, and bump various other dependencies (@sferik)
|
96
110
|
|
97
111
|
## [1.0.0] - 2014-07-09
|
98
|
-
|
99
112
|
### Added
|
100
113
|
- Add an implementation of the MAC token spec.
|
101
|
-
|
102
114
|
### Fixed
|
103
115
|
- Fix Base64.strict_encode64 incompatibility with Ruby 1.8.7.
|
104
116
|
|
105
117
|
## [0.5.0] - 2011-07-29
|
106
|
-
|
107
118
|
### Changed
|
108
|
-
-
|
109
|
-
-
|
110
|
-
-
|
111
|
-
-
|
112
|
-
-
|
119
|
+
- *breaking* `oauth_token` renamed to `oauth_bearer`.
|
120
|
+
- *breaking* `authorize_path` Client option renamed to `authorize_url`.
|
121
|
+
- *breaking* `access_token_path` Client option renamed to `token_url`.
|
122
|
+
- *breaking* `access_token_method` Client option renamed to `token_method`.
|
123
|
+
- *breaking* `web_server` renamed to `auth_code`.
|
113
124
|
|
114
125
|
## [0.4.1] - 2011-04-20
|
115
126
|
|
@@ -137,34 +148,41 @@ All notable changes to this project will be documented in this file.
|
|
137
148
|
|
138
149
|
## [0.0.4] + [0.0.3] + [0.0.2] + [0.0.1] - 2010-04-22
|
139
150
|
|
140
|
-
|
141
|
-
[0.0.
|
142
|
-
[0.0.
|
143
|
-
[0.0.
|
144
|
-
[0.0.
|
145
|
-
[0.0.
|
146
|
-
[0.0.
|
147
|
-
[0.0.
|
148
|
-
[0.0.
|
149
|
-
[0.0.
|
150
|
-
[0.0.
|
151
|
-
[0.0.
|
152
|
-
[0.0.
|
153
|
-
[0.0
|
154
|
-
[0.1.
|
155
|
-
[0.
|
156
|
-
[0.
|
157
|
-
[0.
|
158
|
-
[0.4.
|
159
|
-
[0.
|
160
|
-
[0.
|
161
|
-
[1.
|
162
|
-
[1.
|
163
|
-
[1.
|
164
|
-
[1.3.
|
165
|
-
[1.
|
166
|
-
[1.4.
|
167
|
-
[1.4.
|
168
|
-
[1.4.
|
169
|
-
[1.4.
|
170
|
-
[
|
151
|
+
[0.0.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/311d9f4...v0.0.1
|
152
|
+
[0.0.2]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.1...v0.0.2
|
153
|
+
[0.0.3]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.2...v0.0.3
|
154
|
+
[0.0.4]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.3...v0.0.4
|
155
|
+
[0.0.5]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.4...v0.0.5
|
156
|
+
[0.0.6]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.5...v0.0.6
|
157
|
+
[0.0.7]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.6...v0.0.7
|
158
|
+
[0.0.8]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.7...v0.0.8
|
159
|
+
[0.0.9]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.8...v0.0.9
|
160
|
+
[0.0.10]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.9...v0.0.10
|
161
|
+
[0.0.11]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.10...v0.0.11
|
162
|
+
[0.0.12]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.11...v0.0.12
|
163
|
+
[0.0.13]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.12...v0.0.13
|
164
|
+
[0.1.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.13...v0.1.0
|
165
|
+
[0.1.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.1.0...v0.1.1
|
166
|
+
[0.2.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.1.1...v0.2.0
|
167
|
+
[0.3.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.2.0...v0.3.0
|
168
|
+
[0.4.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.3.0...v0.4.0
|
169
|
+
[0.4.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.4.0...v0.4.1
|
170
|
+
[0.5.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.4.1...v0.5.0
|
171
|
+
[1.0.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.9.4...v1.0.0
|
172
|
+
[1.1.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.0.0...v1.1.0
|
173
|
+
[1.2.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.1.0...v1.2.0
|
174
|
+
[1.3.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.2.0...v1.3.0
|
175
|
+
[1.3.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.3.0...v1.3.1
|
176
|
+
[1.4.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.3.1...v1.4.0
|
177
|
+
[1.4.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.0...v1.4.1
|
178
|
+
[1.4.2]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.1...v1.4.2
|
179
|
+
[1.4.3]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.2...v1.4.3
|
180
|
+
[1.4.4]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.3...v1.4.4
|
181
|
+
[1.4.5]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.4...v1.4.5
|
182
|
+
[1.4.6]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.5...v1.4.6
|
183
|
+
[1.4.7]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.6...v1.4.7
|
184
|
+
[1.4.8]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.7...v1.4.8
|
185
|
+
[1.4.9]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.8...v1.4.9
|
186
|
+
[1.4.10]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.9...v1.4.10
|
187
|
+
[1.4.11]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.10...v1.4.11
|
188
|
+
[unreleased]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.11...HEAD
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
## Contributing
|
2
|
+
|
3
|
+
Bug reports and pull requests are welcome on GitHub at [https://gitlab.com/oauth-xx/oauth2][source]
|
4
|
+
. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
|
5
|
+
the [code of conduct][conduct].
|
6
|
+
|
7
|
+
To submit a patch, please fork the project and create a patch with tests. Once you're happy with it send a pull request!
|
8
|
+
|
9
|
+
## Detailed instructions on Submitting a Pull Request
|
10
|
+
1. [Fork the repository.][fork]
|
11
|
+
2. [Create a topic branch.][branch]
|
12
|
+
3. Add specs for your unimplemented feature or bug fix.
|
13
|
+
4. Run `bundle exec rake spec`. If your specs pass, return to step 3.
|
14
|
+
5. Implement your feature or bug fix.
|
15
|
+
6. Run `bundle exec rake`. If your specs fail, return to step 5.
|
16
|
+
7. Run `open coverage/index.html`. If your changes are not completely covered
|
17
|
+
by your tests, return to step 3.
|
18
|
+
8. Add documentation for your feature or bug fix.
|
19
|
+
9. Run `bundle exec rake verify_measurements`. If your changes are not 100%
|
20
|
+
documented, go back to step 8.
|
21
|
+
10. Commit and push your changes.
|
22
|
+
11. [Submit a pull request.][pr]
|
23
|
+
|
24
|
+
[fork]: http://help.github.com/fork-a-repo/
|
25
|
+
[branch]: http://learn.github.com/p/branching.html
|
26
|
+
[pr]: http://help.github.com/send-pull-requests/
|
27
|
+
|
28
|
+
## Contributors
|
29
|
+
|
30
|
+
[![Contributors](https://contrib.rocks/image?repo=oauth-xx/oauth2)][contributors]
|
31
|
+
|
32
|
+
Made with [contributors-img][contrib-rocks].
|
33
|
+
|
34
|
+
[comment]: <> (Following links are used by README, CONTRIBUTING)
|
35
|
+
|
36
|
+
[conduct]: https://gitlab.com/oauth-xx/oauth2/-/blob/main/CODE_OF_CONDUCT.md
|
37
|
+
|
38
|
+
[contrib-rocks]: https://contrib.rocks
|
39
|
+
|
40
|
+
[contributors]: https://gitlab.com/oauth-xx/oauth2/-/graphs/main
|
41
|
+
|
42
|
+
[comment]: <> (Following links are used by README, CONTRIBUTING, Homepage)
|
43
|
+
|
44
|
+
[source]: https://gitlab.com/oauth-xx/oauth2
|
data/LICENSE
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
MIT License
|
2
2
|
|
3
3
|
Copyright (c) 2011 - 2013 Michael Bleigh and Intridea, Inc.
|
4
|
-
Copyright (c) 2017 -
|
4
|
+
Copyright (c) 2017 - 2022 oauth-xx organization, https://gitlab.com/oauth-xx
|
5
5
|
|
6
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
7
|
of this software and associated documentation files (the "Software"), to deal
|