Skip to content

Commit 3dc3e93

Browse files
authored
Add privacy manifest (#822)
1 parent aea7b8a commit 3dc3e93

File tree

12 files changed

+129
-47
lines changed

12 files changed

+129
-47
lines changed

AppAuth.podspec

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,19 @@ It follows the OAuth 2.0 for Native Apps best current practice
4444
# Subspec for the core AppAuth library classes only, suitable for extensions.
4545
s.subspec 'Core' do |core|
4646
core.source_files = "Source/AppAuthCore.h", "Source/AppAuthCore/*.{h,m}"
47+
core.resource_bundles = {
48+
"AppAuthCore_Privacy" => ["PrivacyInfo.xcprivacy"]
49+
}
4750
end
4851

49-
# Subspec for the full AppAuth library, including platform-dependant external user agents.
52+
# Subspec for the full AppAuth library, including platform-dependent external user agents.
5053
s.subspec 'ExternalUserAgent' do |externalUserAgent|
5154
externalUserAgent.dependency 'AppAuth/Core'
5255

5356
externalUserAgent.source_files = "Source/AppAuth.h", "Source/AppAuth/*.{h,m}"
57+
externalUserAgent.resource_bundles = {
58+
"AppAuthExternalUserAgent_Privacy" => ["PrivacyInfo.xcprivacy"]
59+
}
5460

5561
# iOS
5662
externalUserAgent.ios.source_files = "Source/AppAuth/iOS/**/*.{h,m}"
@@ -64,10 +70,13 @@ It follows the OAuth 2.0 for Native Apps best current practice
6470
externalUserAgent.osx.weak_frameworks = "AuthenticationServices"
6571
end
6672

67-
# Subspec for the full AppAuth library, including platform-dependant external user agents.
73+
# Subspec for the full AppAuth library, including platform-dependent external user agents.
6874
s.subspec 'TV' do |tv|
6975
tv.source_files = "Source/AppAuthTV.h", "Source/AppAuthTV/*.{h,m}"
7076
tv.dependency 'AppAuth/Core'
77+
tv.resource_bundles = {
78+
"AppAuthTV" => ["PrivacyInfo.xcprivacy"]
79+
}
7180
end
7281

7382
s.default_subspecs = 'Core', 'ExternalUserAgent'

AppAuth.xcodeproj/project.pbxproj

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,12 @@
546546
60140F801DE4344200DA0DC3 /* OIDRegistrationResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 60140F7F1DE4344200DA0DC3 /* OIDRegistrationResponse.m */; };
547547
60140F831DE43BAF00DA0DC3 /* OIDRegistrationRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 60140F821DE43BAF00DA0DC3 /* OIDRegistrationRequestTests.m */; };
548548
60140F861DE43CC700DA0DC3 /* OIDRegistrationResponseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 60140F851DE43CC700DA0DC3 /* OIDRegistrationResponseTests.m */; };
549+
73F574342B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */; };
550+
73F574352B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */; };
551+
73F574362B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */; };
552+
73F574372B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */; };
553+
73F574382B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */; };
554+
73F574392B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */; };
549555
A5EEF29720D821120044F470 /* OIDTokenUtilitiesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = A5EEF1FD20CF07760044F470 /* OIDTokenUtilitiesTests.m */; };
550556
A5EEF29820D8211A0044F470 /* OIDTokenUtilitiesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = A5EEF1FD20CF07760044F470 /* OIDTokenUtilitiesTests.m */; };
551557
A5EEF29920D8211B0044F470 /* OIDTokenUtilitiesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = A5EEF1FD20CF07760044F470 /* OIDTokenUtilitiesTests.m */; };
@@ -827,6 +833,7 @@
827833
60140F821DE43BAF00DA0DC3 /* OIDRegistrationRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OIDRegistrationRequestTests.m; sourceTree = "<group>"; };
828834
60140F841DE43C8C00DA0DC3 /* OIDRegistrationResponseTests.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OIDRegistrationResponseTests.h; sourceTree = "<group>"; };
829835
60140F851DE43CC700DA0DC3 /* OIDRegistrationResponseTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OIDRegistrationResponseTests.m; sourceTree = "<group>"; };
836+
73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
830837
A5EEF1FD20CF07760044F470 /* OIDTokenUtilitiesTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OIDTokenUtilitiesTests.m; sourceTree = "<group>"; };
831838
A6CEB1172007E384009D492A /* OIDEndSessionRequestTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OIDEndSessionRequestTests.h; sourceTree = "<group>"; };
832839
A6CEB1182007E384009D492A /* OIDEndSessionRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OIDEndSessionRequestTests.m; sourceTree = "<group>"; };
@@ -1048,6 +1055,7 @@
10481055
340E73731C5D819B0076B1F6 = {
10491056
isa = PBXGroup;
10501057
children = (
1058+
73F574332B7C42690023FFF0 /* PrivacyInfo.xcprivacy */,
10511059
341742291C5D84D0000EF209 /* Frameworks */,
10521060
341741FB1C5D82D3000EF209 /* UnitTests */,
10531061
341741AE1C5D8243000EF209 /* Source */,
@@ -1937,6 +1945,7 @@
19371945
isa = PBXResourcesBuildPhase;
19381946
buildActionMask = 2147483647;
19391947
files = (
1948+
73F574392B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */,
19401949
);
19411950
runOnlyForDeploymentPostprocessing = 0;
19421951
};
@@ -1965,13 +1974,15 @@
19651974
isa = PBXResourcesBuildPhase;
19661975
buildActionMask = 2147483647;
19671976
files = (
1977+
73F574382B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */,
19681978
);
19691979
runOnlyForDeploymentPostprocessing = 0;
19701980
};
19711981
343AAA521E83463400F9D36E /* Resources */ = {
19721982
isa = PBXResourcesBuildPhase;
19731983
buildActionMask = 2147483647;
19741984
files = (
1985+
73F574342B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */,
19751986
);
19761987
runOnlyForDeploymentPostprocessing = 0;
19771988
};
@@ -1986,13 +1997,15 @@
19861997
isa = PBXResourcesBuildPhase;
19871998
buildActionMask = 2147483647;
19881999
files = (
2000+
73F574352B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */,
19892001
);
19902002
runOnlyForDeploymentPostprocessing = 0;
19912003
};
19922004
343AAAA41E83489A00F9D36E /* Resources */ = {
19932005
isa = PBXResourcesBuildPhase;
19942006
buildActionMask = 2147483647;
19952007
files = (
2008+
73F574362B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */,
19962009
);
19972010
runOnlyForDeploymentPostprocessing = 0;
19982011
};
@@ -2007,6 +2020,7 @@
20072020
isa = PBXResourcesBuildPhase;
20082021
buildActionMask = 2147483647;
20092022
files = (
2023+
73F574372B7C42690023FFF0 /* PrivacyInfo.xcprivacy in Resources */,
20102024
);
20112025
runOnlyForDeploymentPostprocessing = 0;
20122026
};

Examples/Example-iOS_ObjC/Example-iOS_ObjC.xcodeproj/project.pbxproj

Lines changed: 34 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
346E91991C2A245000D3620B /* SafariServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 346E91981C2A245000D3620B /* SafariServices.framework */; };
2020
34CB09BD1C42007600A54261 /* AppAuthExampleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 34CB09BB1C42007600A54261 /* AppAuthExampleViewController.m */; };
2121
34CB09BE1C42007600A54261 /* AppAuthExampleViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 34CB09BC1C42007600A54261 /* AppAuthExampleViewController.xib */; };
22-
D0B5FA33D74A6F7924A47471 /* libPods-Example-iOS_ObjC_Extension.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 715EDB7EC4271193E47615ED /* libPods-Example-iOS_ObjC_Extension.a */; };
23-
E46F8589CE9E5DDFA69D835B /* libPods-Example-iOS_ObjC.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8B61A918CBE7B8142CD7D8B3 /* libPods-Example-iOS_ObjC.a */; };
22+
BE28448F8FD76A9C12A30150 /* Pods_Example_iOS_ObjC_Extension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3CC004951DF03519C52500EC /* Pods_Example_iOS_ObjC_Extension.framework */; };
23+
C46B36D00F282572B5747D71 /* Pods_Example_iOS_ObjC.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 43D84745AE558B974A2E64F7 /* Pods_Example_iOS_ObjC.framework */; };
2424
/* End PBXBuildFile section */
2525

2626
/* Begin PBXContainerItemProxy section */
@@ -81,9 +81,9 @@
8181
34CB09BB1C42007600A54261 /* AppAuthExampleViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppAuthExampleViewController.m; sourceTree = "<group>"; };
8282
34CB09BC1C42007600A54261 /* AppAuthExampleViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AppAuthExampleViewController.xib; sourceTree = "<group>"; };
8383
3A18DF082AC2FA0980C9DE57 /* Pods-Example-iOS_ObjC_Extension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example-iOS_ObjC_Extension.release.xcconfig"; path = "Pods/Target Support Files/Pods-Example-iOS_ObjC_Extension/Pods-Example-iOS_ObjC_Extension.release.xcconfig"; sourceTree = "<group>"; };
84-
715EDB7EC4271193E47615ED /* libPods-Example-iOS_ObjC_Extension.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example-iOS_ObjC_Extension.a"; sourceTree = BUILT_PRODUCTS_DIR; };
84+
3CC004951DF03519C52500EC /* Pods_Example_iOS_ObjC_Extension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Example_iOS_ObjC_Extension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
85+
43D84745AE558B974A2E64F7 /* Pods_Example_iOS_ObjC.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Example_iOS_ObjC.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8586
86C7660572AE6FF7A4D1592A /* Pods-Example-iOS_ObjC_Extension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example-iOS_ObjC_Extension.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Example-iOS_ObjC_Extension/Pods-Example-iOS_ObjC_Extension.debug.xcconfig"; sourceTree = "<group>"; };
86-
8B61A918CBE7B8142CD7D8B3 /* libPods-Example-iOS_ObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example-iOS_ObjC.a"; sourceTree = BUILT_PRODUCTS_DIR; };
8787
C4C31DB4A4928F246AA03805 /* Pods-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig"; sourceTree = "<group>"; };
8888
D9867DC6FA9089CD613D4728 /* Pods-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig"; sourceTree = "<group>"; };
8989
ECBCCC4A1A779C83C72044F2 /* Pods-Example-iOS_ObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example-iOS_ObjC.release.xcconfig"; path = "Pods/Target Support Files/Pods-Example-iOS_ObjC/Pods-Example-iOS_ObjC.release.xcconfig"; sourceTree = "<group>"; };
@@ -95,7 +95,7 @@
9595
buildActionMask = 2147483647;
9696
files = (
9797
06D4812F2055C3D400D9DC32 /* NotificationCenter.framework in Frameworks */,
98-
D0B5FA33D74A6F7924A47471 /* libPods-Example-iOS_ObjC_Extension.a in Frameworks */,
98+
BE28448F8FD76A9C12A30150 /* Pods_Example_iOS_ObjC_Extension.framework in Frameworks */,
9999
);
100100
runOnlyForDeploymentPostprocessing = 0;
101101
};
@@ -111,7 +111,7 @@
111111
buildActionMask = 2147483647;
112112
files = (
113113
346E91991C2A245000D3620B /* SafariServices.framework in Frameworks */,
114-
E46F8589CE9E5DDFA69D835B /* libPods-Example-iOS_ObjC.a in Frameworks */,
114+
C46B36D00F282572B5747D71 /* Pods_Example_iOS_ObjC.framework in Frameworks */,
115115
);
116116
runOnlyForDeploymentPostprocessing = 0;
117117
};
@@ -145,9 +145,9 @@
145145
3474C8DD1DFCB08E00F22B34 /* libAppAuth-iOS.a */,
146146
346E91981C2A245000D3620B /* SafariServices.framework */,
147147
09795EAF079B07A1781675D9 /* libPods-Example.a */,
148-
8B61A918CBE7B8142CD7D8B3 /* libPods-Example-iOS_ObjC.a */,
149148
06D4812E2055C3D400D9DC32 /* NotificationCenter.framework */,
150-
715EDB7EC4271193E47615ED /* libPods-Example-iOS_ObjC_Extension.a */,
149+
43D84745AE558B974A2E64F7 /* Pods_Example_iOS_ObjC.framework */,
150+
3CC004951DF03519C52500EC /* Pods_Example_iOS_ObjC_Extension.framework */,
151151
);
152152
name = Frameworks;
153153
sourceTree = "<group>";
@@ -252,6 +252,7 @@
252252
346E91661C29D42800D3620B /* Frameworks */,
253253
346E91671C29D42800D3620B /* Resources */,
254254
06D4813E2055C3D400D9DC32 /* Embed App Extensions */,
255+
0B7CB92A32140E833CA8FF89 /* [CP] Embed Pods Frameworks */,
255256
);
256257
buildRules = (
257258
);
@@ -301,6 +302,7 @@
301302
developmentRegion = English;
302303
hasScannedForEncodings = 0;
303304
knownRegions = (
305+
English,
304306
en,
305307
Base,
306308
);
@@ -345,6 +347,24 @@
345347
/* End PBXResourcesBuildPhase section */
346348

347349
/* Begin PBXShellScriptBuildPhase section */
350+
0B7CB92A32140E833CA8FF89 /* [CP] Embed Pods Frameworks */ = {
351+
isa = PBXShellScriptBuildPhase;
352+
buildActionMask = 2147483647;
353+
files = (
354+
);
355+
inputPaths = (
356+
"${PODS_ROOT}/Target Support Files/Pods-Example-iOS_ObjC/Pods-Example-iOS_ObjC-frameworks.sh",
357+
"${BUILT_PRODUCTS_DIR}/AppAuth/AppAuth.framework",
358+
);
359+
name = "[CP] Embed Pods Frameworks";
360+
outputPaths = (
361+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/AppAuth.framework",
362+
);
363+
runOnlyForDeploymentPostprocessing = 0;
364+
shellPath = /bin/sh;
365+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example-iOS_ObjC/Pods-Example-iOS_ObjC-frameworks.sh\"\n";
366+
showEnvVarsInLog = 0;
367+
};
348368
836219F293F319703A16E68D /* [CP] Check Pods Manifest.lock */ = {
349369
isa = PBXShellScriptBuildPhase;
350370
buildActionMask = 2147483647;
@@ -468,7 +488,7 @@
468488
DEVELOPMENT_TEAM = "";
469489
GCC_C_LANGUAGE_STANDARD = gnu11;
470490
INFOPLIST_FILE = "Example-iOS_ObjC_Extension/Info.plist";
471-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
491+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
472492
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
473493
PRODUCT_BUNDLE_IDENTIFIER = "net.openid.appauth.Example.Example-iOS-ObjC-Extension";
474494
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -500,7 +520,7 @@
500520
DEVELOPMENT_TEAM = "";
501521
GCC_C_LANGUAGE_STANDARD = gnu11;
502522
INFOPLIST_FILE = "Example-iOS_ObjC_Extension/Info.plist";
503-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
523+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
504524
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
505525
PRODUCT_BUNDLE_IDENTIFIER = "net.openid.appauth.Example.Example-iOS-ObjC-Extension";
506526
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -520,7 +540,7 @@
520540
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
521541
DEVELOPMENT_TEAM = "";
522542
INFOPLIST_FILE = Tests/Info.plist;
523-
IPHONEOS_DEPLOYMENT_TARGET = 10.2;
543+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
524544
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
525545
PRODUCT_BUNDLE_IDENTIFIER = net.openid.AppAuthExampleTests;
526546
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -539,7 +559,7 @@
539559
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
540560
DEVELOPMENT_TEAM = "";
541561
INFOPLIST_FILE = Tests/Info.plist;
542-
IPHONEOS_DEPLOYMENT_TARGET = 10.2;
562+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
543563
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
544564
PRODUCT_BUNDLE_IDENTIFIER = net.openid.AppAuthExampleTests;
545565
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -642,7 +662,7 @@
642662
CODE_SIGN_IDENTITY = "iPhone Developer";
643663
DEVELOPMENT_TEAM = "";
644664
INFOPLIST_FILE = Source/Info.plist;
645-
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
665+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
646666
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
647667
PRODUCT_BUNDLE_IDENTIFIER = net.openid.appauth.Example;
648668
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -658,7 +678,7 @@
658678
CODE_SIGN_IDENTITY = "iPhone Developer";
659679
DEVELOPMENT_TEAM = "";
660680
INFOPLIST_FILE = Source/Info.plist;
661-
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
681+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
662682
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
663683
PRODUCT_BUNDLE_IDENTIFIER = net.openid.appauth.Example;
664684
PRODUCT_NAME = "$(TARGET_NAME)";

Examples/Example-iOS_ObjC/Podfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
platform :ios, '9.0'
1+
platform :ios, '11.0'
2+
3+
use_frameworks!
24

35
target 'Example-iOS_ObjC' do
46
# AppAuth Pod

Examples/Example-iOS_ObjC/Source/AppAuthExampleViewController.m

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,10 @@ - (void)doClientRegistration:(OIDServiceConfiguration *)configuration
179179
grantTypes:nil
180180
subjectType:nil
181181
tokenEndpointAuthMethod:@"client_secret_post"
182-
additionalParameters:nil
183-
additionalHeaders:nil];
184-
// performs registration request
182+
initialAccessToken:nil
183+
additionalParameters:nil];
184+
185+
// performs registration request
185186
[self logMessage:@"Initiating registration request"];
186187

187188
[OIDAuthorizationService performRegistrationRequest:request

0 commit comments

Comments
 (0)