Skip to content

Commit a3b7166

Browse files
Oleksandr Skrypnyksxua
Oleksandr Skrypnyk
authored andcommitted
add a callback before request
1 parent becb36a commit a3b7166

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Sources/Flows/OAuth2CodeGrant.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ open class OAuth2CodeGrant: OAuth2 {
4040
override open class var responseType: String? {
4141
return "code"
4242
}
43-
43+
44+
open var beforeHandlingCallback: (() -> Void)?
4445

4546
// MARK: - Token Request
4647

@@ -79,6 +80,7 @@ open class OAuth2CodeGrant: OAuth2 {
7980
override open func handleRedirectURL(_ redirect: URL) {
8081
logger?.debug("OAuth2", msg: "Handling redirect URL \(redirect.description)")
8182
do {
83+
beforeHandlingCallback?()
8284
let code = try validateRedirectURL(redirect)
8385
exchangeCodeForToken(code)
8486
}

p2.OAuth2.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Pod::Spec.new do |s|
2727
}
2828

2929
s.source = {
30-
:git => 'https://github.com/p2/OAuth2.git',
30+
:git => 'https://github.com/simplepractice/OAuth2.git',
3131
:tag => s.version.to_s,
3232
:submodules => true
3333
}

0 commit comments

Comments
 (0)