omniauth-mastodon-st 0.9.5 → 0.9.6
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/omniauth/mastodon/version.rb +1 -1
- data/lib/omniauth/strategies/mastodon.rb +7 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 434df4b51470a6832e2810e9ddf40a9e231bcfac2aada58a90bbcc1835f3d1fc
|
4
|
+
data.tar.gz: ca05b78b68731788fa0082975c8450aa5c436031bf6e223c45d8ece68a03900f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7af4438fdd8c348a9b5277c710252279912199df0bc2353c2ea4cd393dbd7166ce83005335dff7e91b1dc317e7512bb58079a057135322d8dcad1b42ccf29cfa
|
7
|
+
data.tar.gz: beead42ab4797a48fffe22e6fdfed7064dfe815f1e2287b4ed47376343e8ea032de8ec58fe56d08ea18c4d9be528368c8354dbeae98e6aa7fc9608d8f8600016
|
@@ -36,10 +36,14 @@ module OmniAuth
|
|
36
36
|
# If the identifier param is not already present, a form will be shown for entering it
|
37
37
|
def request_phase
|
38
38
|
identifier ? start_oauth : get_identifier
|
39
|
+
puts "++++++++++request_phase"
|
40
|
+
puts identifier
|
39
41
|
end
|
40
42
|
|
41
43
|
def callback_phase
|
42
44
|
set_options_from_identifier
|
45
|
+
puts "++++++++++callback_phase"
|
46
|
+
puts identifier
|
43
47
|
super
|
44
48
|
end
|
45
49
|
|
@@ -49,6 +53,9 @@ module OmniAuth
|
|
49
53
|
|
50
54
|
def callback_url
|
51
55
|
full_host + script_name + callback_path
|
56
|
+
puts "++++++++++callback_url"
|
57
|
+
puts identifier
|
58
|
+
puts full_host + script_name + callback_path
|
52
59
|
end
|
53
60
|
|
54
61
|
def authorize_params
|