All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.http4k.contract.security.providers.kt Maven / Gradle / Ivy

There is a newer version: 5.31.0.0
Show newest version
package org.http4k.contract.security

import org.http4k.core.Filter
import org.http4k.core.NoOp
import org.http4k.core.Uri

fun OAuthSecurity.Companion.googleCloudEndpoints(issuer: String, jwksUri: Uri, audiences: List) = ImplicitOAuthSecurity(
    Uri.of(""),
    emptyList(),
    Filter.NoOp,
    "googleCloudEndpointsOAuth",
    null,
    mapOf(
        "x-google-issuer" to issuer,
        "x-google-jwks_uri" to jwksUri.toString(),
        "x-google-audiences" to audiences.joinToString(",")
    )
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy