Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Instale e configure o SDK oficial da Delfinance para Java.
<dependency> <groupId>br.com.Delfinance</groupId> <artifactId>Delfinance-api-sdk</artifactId> <version>1.0.0</version> </dependency>
implementation 'br.com.Delfinance:Delfinance-api-sdk:1.0.0'
import br.com.Delfinance.sdk.DelfinanceClient; import br.com.Delfinance.sdk.DelfinanceConfig; DelfinanceConfig config = DelfinanceConfig.builder() .environment("sandbox") // ou "production" .clientId(System.getenv("DELFINANCE_CLIENT_ID")) .clientSecret(System.getenv("DELFINANCE_CLIENT_SECRET")) .certPath("./certificado.crt") .keyPath("./chave-privada.key") .build(); DelfinanceClient client = new DelfinanceClient(config);
.environment()
String
"sandbox"
"production"
.clientId()
.clientSecret()
.certPath()
.crt
.keyPath()
.key