File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -627,7 +627,7 @@ authentication
627627
628628``` kotlin
629629authentication
630- .customTokenExchange(" subject_token_type" , " subject_token" )
630+ .customTokenExchange(" subject_token_type" , " subject_token" , " organization_id " )
631631 .start(object : Callback <Credentials , AuthenticationException > {
632632 override fun onSuccess (result : Credentials ) {
633633 // Handle success
@@ -645,7 +645,7 @@ authentication
645645``` kotlin
646646try {
647647 val credentials = authentication
648- .tokenExchange (" subject_token_type" , " subject_token" )
648+ .customTokenExchange (" subject_token_type" , " subject_token" , " organization_id " )
649649 .await()
650650} catch (e: AuthenticationException ) {
651651 e.printStacktrace()
@@ -658,7 +658,7 @@ try {
658658
659659``` java
660660authentication
661- .customTokenExchange(" subject_token_type" , " subject_token" )
661+ .customTokenExchange(" subject_token_type" , " subject_token" , " organization_id " )
662662 .start(new Callback<Credentials , AuthenticationException > () {
663663 @Override
664664 public void onSuccess (@Nullable Credentials payload ) {
You can’t perform that action at this time.
0 commit comments