Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ public interface IssuerMetadataApi {
content = @Content(schema = @Schema(implementation = ApiSchema.IssuerMetadataSchema.class)))
}
)
JsonObject getIssuerMetadata(String participantContextId, String token);
JsonObject getIssuerMetadata(String participantContextId);
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public IssuerMetadataApiController(IdentityHubParticipantContextService particip
@GET
@Path("/")
@Override
public JsonObject getIssuerMetadata(@PathParam("participantContextId") String participantContextId, @HeaderParam(AUTHORIZATION) String authHeader) {
public JsonObject getIssuerMetadata(@PathParam("participantContextId") String participantContextId) {

var participantContext = participantContextService.getParticipantContext(participantContextId)
.orElseThrow((f) -> new AuthenticationFailedException("Invalid issuer"));
Expand Down
Loading