-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add sample application for JWT Bearer Authorization flow (RFC7523) (#208
- Loading branch information
1 parent
c41191a
commit 4ecd5f8
Showing
9 changed files
with
665 additions
and
63 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
114 changes: 56 additions & 58 deletions
114
OktaMobileSDK.xcworkspace/xcshareddata/swiftpm/Package.resolved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,59 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "OktaAuthNative", | ||
"repositoryURL": "https://github.com/okta/okta-auth-swift", | ||
"state": { | ||
"branch": "master", | ||
"revision": "54b40d5c7f7867f6370b0a1311c2e005f57c8bb3", | ||
"version": null | ||
} | ||
}, | ||
{ | ||
"package": "OktaOidc", | ||
"repositoryURL": "https://github.com/okta/okta-oidc-ios", | ||
"state": { | ||
"branch": null, | ||
"revision": "91eac722b8e859ba7f15d65a9085a64a296bc065", | ||
"version": "3.11.2" | ||
} | ||
}, | ||
{ | ||
"package": "swift-argument-parser", | ||
"repositoryURL": "https://github.com/apple/swift-argument-parser.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "f3c9084a71ef4376f2fabbdf1d3d90a49f1fabdb", | ||
"version": "1.1.2" | ||
} | ||
}, | ||
{ | ||
"package": "swift-crypto", | ||
"repositoryURL": "https://github.com/apple/swift-crypto.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "ddb07e896a2a8af79512543b1c7eb9797f8898a5", | ||
"version": "1.1.7" | ||
} | ||
}, | ||
{ | ||
"package": "SwiftDocCPlugin", | ||
"repositoryURL": "https://github.com/apple/swift-docc-plugin", | ||
"state": { | ||
"branch": null, | ||
"revision": "3303b164430d9a7055ba484c8ead67a52f7b74f6", | ||
"version": "1.0.0" | ||
} | ||
}, | ||
{ | ||
"package": "SwiftOTP", | ||
"repositoryURL": "https://github.com/lachlanbell/SwiftOTP", | ||
"state": { | ||
"branch": null, | ||
"revision": "315acdb759083fd8f3c37b02fc021321c8934f9c", | ||
"version": "3.0.0" | ||
} | ||
"pins" : [ | ||
{ | ||
"identity" : "okta-auth-swift", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/okta/okta-auth-swift", | ||
"state" : { | ||
"branch" : "master", | ||
"revision" : "54b40d5c7f7867f6370b0a1311c2e005f57c8bb3" | ||
} | ||
] | ||
}, | ||
"version": 1 | ||
}, | ||
{ | ||
"identity" : "okta-oidc-ios", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/okta/okta-oidc-ios", | ||
"state" : { | ||
"revision" : "91eac722b8e859ba7f15d65a9085a64a296bc065", | ||
"version" : "3.11.2" | ||
} | ||
}, | ||
{ | ||
"identity" : "swift-argument-parser", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/apple/swift-argument-parser.git", | ||
"state" : { | ||
"revision" : "41982a3656a71c768319979febd796c6fd111d5c", | ||
"version" : "1.5.0" | ||
} | ||
}, | ||
{ | ||
"identity" : "swift-crypto", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/apple/swift-crypto.git", | ||
"state" : { | ||
"revision" : "ddb07e896a2a8af79512543b1c7eb9797f8898a5", | ||
"version" : "1.1.7" | ||
} | ||
}, | ||
{ | ||
"identity" : "swift-docc-plugin", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/apple/swift-docc-plugin", | ||
"state" : { | ||
"revision" : "3303b164430d9a7055ba484c8ead67a52f7b74f6", | ||
"version" : "1.0.0" | ||
} | ||
}, | ||
{ | ||
"identity" : "swiftotp", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/lachlanbell/SwiftOTP", | ||
"state" : { | ||
"revision" : "315acdb759083fd8f3c37b02fc021321c8934f9c", | ||
"version" : "3.0.0" | ||
} | ||
} | ||
], | ||
"version" : 2 | ||
} |
Oops, something went wrong.