import ballerina/http;
import ballerina/io;
// Defines the HTTP client to call the OAuth2 secured APIs.
// The client is enriched with the `Authorization: Bearer <token>` header by
// passing the [`http:OAuth2RefreshTokenGrantConfig`](https://docs.central.ballerina.io/ballerina/http/latest/records/OAuth2RefreshTokenGrantConfig) for the `auth` configuration of the
// client.
http:Client securedEP = check new("https://localhost:9090",
auth = {
refreshUrl: "https://localhost:9445/oauth2/token",
refreshToken: "24f19603-8565-4b5f-a036-88a945e1f272",
clientId: "FlfJYKBD2c925h4lkycqNZlC2l4a",
clientSecret: "PJz0UhTJMrHOo68QQNpvnqAY_3Aa",
scopes: ["admin"],
clientConfig: {
secureSocket: {
cert: "../resource/path/to/public.crt"
}
}
},
secureSocket = {
cert: "../resource/path/to/public.crt"
}
);
public function main() returns error? {
string response = check securedEP->get("/foo/bar");
io:println(response);
}
Client - OAuth2 Refresh Token grant typeA client, which is secured with an OAuth2 refresh token grant type can be
used to connect to a secured service. |
import ballerina/http;
import ballerina/io;
http:Client securedEP = check new("https://localhost:9090",
auth = {
refreshUrl: "https://localhost:9445/oauth2/token",
refreshToken: "24f19603-8565-4b5f-a036-88a945e1f272",
clientId: "FlfJYKBD2c925h4lkycqNZlC2l4a",
clientSecret: "PJz0UhTJMrHOo68QQNpvnqAY_3Aa",
scopes: ["admin"],
clientConfig: {
secureSocket: {
cert: "../resource/path/to/public.crt"
}
}
},
secureSocket = {
cert: "../resource/path/to/public.crt"
}
);
Defines the HTTP client to call the OAuth2 secured APIs.
The client is enriched with the Authorization: Bearer <token>
header by
passing the http:OAuth2RefreshTokenGrantConfig
for the auth
configuration of the
client.
public function main() returns error? {
string response = check securedEP->get("/foo/bar");
io:println(response);
}
# As a prerequisite, start a sample service secured with OAuth2.
# You may need to change the trusted certificate file path.
bal run http_client_oauth2_refresh_token_grant_type.bal
Hello, World!