All Projects → line → clova-cek-sdk-java

line / clova-cek-sdk-java

Licence: Apache-2.0 license
SDK of the Clova CEK for Java

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to clova-cek-sdk-java

clova-cek-sdk-python
SDK of the Clova CEK for Python
Stars: ✭ 19 (+46.15%)
Mutual labels:  line, clova, cek-sdk
clova-cek-sdk-nodejs
SDK of the Clova CEK for Node.js
Stars: ✭ 35 (+169.23%)
Mutual labels:  line, clova, cek-sdk
comment-box.nvim
✨ Clarify and beautify your comments using boxes and lines.
Stars: ✭ 91 (+600%)
Mutual labels:  line
android-charts
A curated list of Android Chart libraries.
Stars: ✭ 69 (+430.77%)
Mutual labels:  line
line-bot-sdk-php-tiny
A simple SDK for the LINE Messaging API with PHP.
Stars: ✭ 25 (+92.31%)
Mutual labels:  line
gab-cmdline
A GABStudios Java library to help with command line parsing.
Stars: ✭ 12 (-7.69%)
Mutual labels:  line
colortest
Quickly show all your terminal colors
Stars: ✭ 66 (+407.69%)
Mutual labels:  line
line-example-bot-tiny-php
Line Bot 基礎範例程式碼教學 (PHP) - 輕量版 LINEBotTiny.php
Stars: ✭ 58 (+346.15%)
Mutual labels:  line
line-richmenus-manager
LINE Rich Menus Manager
Stars: ✭ 19 (+46.15%)
Mutual labels:  line
unosolo
Work-in-progress Rust application that converts C++ header-only libraries to single self-contained headers.
Stars: ✭ 26 (+100%)
Mutual labels:  line
react-liff
A react context provider for LIFF (LINE Front-end Framework)
Stars: ✭ 22 (+69.23%)
Mutual labels:  line
google streetview
A command line tool and module for Google Street View Image API
Stars: ✭ 77 (+492.31%)
Mutual labels:  line
linenotify
Template for LINE Notify service in Golang
Stars: ✭ 18 (+38.46%)
Mutual labels:  line
line-sdk-android
LINE SDK for Android lets you integrate LINE into your Android app to create a more engaging experience for your users.
Stars: ✭ 101 (+676.92%)
Mutual labels:  line
CHRLINE
LINE Chrome API
Stars: ✭ 41 (+215.38%)
Mutual labels:  line
line-things-starter
The sample codes for LINE Things Developer Trial
Stars: ✭ 91 (+600%)
Mutual labels:  line
react-svg-pathline
React component for drawing SVG path through set of points, smoothing the corners
Stars: ✭ 42 (+223.08%)
Mutual labels:  line
LMGraphView
LMGraphView is a simple and customizable graph view for iOS.
Stars: ✭ 61 (+369.23%)
Mutual labels:  line
ucollage
An extensible command line image viewer inspired by vim
Stars: ✭ 161 (+1138.46%)
Mutual labels:  line
line-sdk-unity
Provides a modern way of implementing LINE APIs in Unity games, for iOS and Android.
Stars: ✭ 84 (+546.15%)
Mutual labels:  line

Clova CEK SDK Java

Build Status Maven Central Javadocs

This repository contains Java libraries for development of Clova extensions using the Clova Extensions Kit(CEK).

How to Develop

clova-extension-boot-web is a library for development using Spring Boot.
Develop using this library.

Set Up

Project Creation

Create a Spring Boot project to develop a generic web application.
This can be created easily using Spring Initializr.

Installation

Install clova-extension-boot-web.

Installing with Maven

Add as a dependency to pom.xml as follows.

<dependency>
  <groupId>com.linecorp.clova</groupId>
  <artifactId>clova-extension-boot-web</artifactId>
  <version>1.2.0</version>
</dependency>

Installing with Gradle

Add as a dependency to build.gradle as follows.

dependencies {
   compile('com.linecorp.clova:clova-extension-boot-web:1.2.0')
}

Develop

Prepare a Handler that handles CEK requests.
For more information on Handler, see Sample Extensions.
e.g.) echo's Handler
No Controller is required.

Run

$ ./mvnw spring-boot:run

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].