This library was created by an individual, not an official.
It is currently deployed in the Github Package Registry and JitPack.
We recommend JitPack because Github Package Registry requires Github Token provided by the administrator.
The Getting Started below is based on JitPack.
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.ossmini</groupId>
<artifactId>Kakao_I_OpenBuilder_Library</artifactId>
<version>Tag</version>
</dependency>
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
implementation 'com.github.ossmini:Kakao_I_OpenBuilder_Library:Tag'
static final String IMAGE_URL = "http://k.kakaocdn.net/dn/83BvP/bl20duRC1Q1/lj3JUcmrzC53YIjNDkqbWK/i_6piz1p.jpg";
Template template = TemplateBuilder.builder()
.addSimpleText("Hello World")
.addSimpleImage(IMAGE_URL, "Hello World")
.build();
return SKillResponseBuilder.builder()
.addTemplate(template)
.build();
Skill | Supported |
---|---|
QuickReply | X |
SimpleText | O |
SimpleImage | O |
BasicCard | O |
CommerceCard | X |
ListCard | X |
ItemCard | X |
Thumbnail | O |
Button | O |
Forwardable | O |
CarouselHeader | O |
Profile | O |
Link | O |
You need Apache Maven to build the project:
mvn clean install
Licensed under the Apache-2.0 license.