πGetting Started Guide
For a initial interation with the SDK, follow this guide.
1. Installing
Maven
<dependency>
<groupId>io.github.open-ifood</groupId>
<artifactId>sdk</artifactId>
<version>1.0.0</version>
</dependency>Gradle
implementation 'io.github.open-ifood:sdk:1.0.0'2. Initialize the authentication
IFoodService
.initialize()
.authenticate(
EmailAuthenticationRequest.builder()
.tenantId("IFO")
.type("EMAIL")
.email("email@domain.com")
.build()
)3. Confirm auth code
4. Access to private modules
Last updated