Skip to content

Commit

Permalink
OKTA-237143-iOS 13 - investigate compatibility with OIDC library
Browse files Browse the repository at this point in the history
  • Loading branch information
IldarAbdullin-okta committed Jul 9, 2019
1 parent ae4a4e8 commit ee0dc77
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 15 deletions.
8 changes: 4 additions & 4 deletions Example/Okta.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<key>scopes</key>
<string>openid profile offline_access</string>
<key>redirectUri</key>
<string>com.okta.example:/callback</string>
<string>{scheme}:/callback</string>
<key>clientId</key>
<string>0oa2p7eq7uDmZY4sJ0g7</string>
<string>{clientId}</string>
<key>issuer</key>
<string>https://sdk-test.trexcloud.com/oauth2/default</string>
<string>https://{yourOktaDomain}/oauth2/default</string>
<key>logoutRedirectUri</key>
<string>com.okta.example:/logout</string>
<string>{scheme}:/logout</string>
</dict>
</plist>
4 changes: 2 additions & 2 deletions Okta/AppAuth/OIDTokenRequest.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
See the License for the specific language governing permissions and
limitations under the License.
@modifications
Copyright (C) 2019 Okta Inc.
@modifications
Copyright (C) 2019 Okta Inc.
*/

Expand Down
3 changes: 1 addition & 2 deletions Okta/OktaOidc/OIDAuthorizationService+EndSession.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @file OIDAuthorizationService+IOS.h
/*! @file OIDAuthorizationService+EndSession.h
@brief AppAuth iOS SDK
@copyright
Copyright 2016 Google Inc. All Rights Reserved.
Expand All @@ -17,7 +17,6 @@
@modifications
Copyright (C) 2019 Okta Inc.
*/

#import <Foundation/Foundation.h>
Expand Down
27 changes: 20 additions & 7 deletions Okta/OktaOidc/OIDAuthorizationService+EndSession.m
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
//
// OIDAuthorizationService+EndSession.m
// okta-oidc
//
// Created by Ildar Abdullin on 7/5/19.
// Copyright © 2019 Okta. All rights reserved.
//
/*! @file OIDAuthorizationService+EndSession.m
@brief AppAuth iOS SDK
@copyright
Copyright 2016 Google Inc. All Rights Reserved.
@copydetails
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
@modifications
Copyright (C) 2019 Okta Inc.
*/

#import "OIDAuthorizationService+EndSession.h"

Expand Down

0 comments on commit ee0dc77

Please sign in to comment.