import ballerina/http;
listener http:Listener securedEP = new(9090, config = {
secureSocket: {
key: {
certFile: "../resource/path/to/public.crt",
keyFile: "../resource/path/to/private.key"
}
}
});
// The service can be secured with JWT authentication and can be authorized
// optionally. JWT authentication can be enabled by setting the
// `http:JwtValidatorConfig` configurations.
// Authorization is based on scopes. A scope maps to one or more groups.
// Authorization can be enabled by setting the `string|string[]` type
// configurations.
@http:ServiceConfig {
auth: [
{
jwtValidatorConfig: {
issuer: "wso2",
audience: "ballerina",
signatureConfig: {
certFile: "../resource/path/to/public.crt"
},
scopeKey: "scp"
},
scopes: ["hello"]
}
]
}
service /foo on securedEP {
// It is optional to override the authentication and authorization
// configurations at the resource levels. Otherwise, the service auth
// configurations will be applied automatically to the resources as well.
resource function get bar() returns string {
return "Hello, World!";
}
}
HTTP Service with JWT AuthAn HTTP service/resource can be secured using JWT and by enforcing
authorization optionally. Then, it validates the JWT sent in the
|
|
|
|
|
|
The service can be secured with JWT authentication and can be authorized
optionally. JWT authentication can be enabled by setting the
|
|
It is optional to override the authentication and authorization configurations at the resource levels. Otherwise, the service auth configurations will be applied automatically to the resources as well. |
|