File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ open class OAuth2CodeGrant: OAuth2 {
40
40
override open class var responseType : String ? {
41
41
return " code "
42
42
}
43
-
43
+
44
+ open var beforeHandlingCallback : ( ( ) -> Void ) ?
44
45
45
46
// MARK: - Token Request
46
47
@@ -79,6 +80,7 @@ open class OAuth2CodeGrant: OAuth2 {
79
80
override open func handleRedirectURL( _ redirect: URL ) {
80
81
logger? . debug ( " OAuth2 " , msg: " Handling redirect URL \( redirect. description) " )
81
82
do {
83
+ beforeHandlingCallback ? ( )
82
84
let code = try validateRedirectURL ( redirect)
83
85
exchangeCodeForToken ( code)
84
86
}
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Pod::Spec.new do |s|
27
27
}
28
28
29
29
s . source = {
30
- :git => 'https://github.com/p2 /OAuth2.git' ,
30
+ :git => 'https://github.com/simplepractice /OAuth2.git' ,
31
31
:tag => s . version . to_s ,
32
32
:submodules => true
33
33
}
You can’t perform that action at this time.
0 commit comments