com.linecorp.bot.client.LineOAuthService Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2019 LINE Corporation
*
* LINE Corporation licenses this file to you under the Apache License,
* version 2.0 (the "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package com.linecorp.bot.client;
import java.util.concurrent.CompletableFuture;
import com.linecorp.bot.model.oauth.ChannelAccessTokenException;
import com.linecorp.bot.model.oauth.ChannelAccessTokenKeyIdsResponse;
import com.linecorp.bot.model.oauth.IssueChannelAccessTokenResponse;
import lombok.experimental.PackagePrivate;
import retrofit2.Call;
import retrofit2.http.Field;
import retrofit2.http.FormUrlEncoded;
import retrofit2.http.GET;
import retrofit2.http.POST;
import retrofit2.http.Query;
/**
* An OAuth client that issues or revokes channel access tokens. See {@link LineOAuthClient} and
* document
* for detail.
*/
@PackagePrivate
interface LineOAuthService {
/**
* Gets all valid channel access token key IDs.
*/
@GET("oauth2/v2.1/tokens/kid")
Call getsAllValidChannelAccessTokenKeyIds(
@Query("client_assertion_type") String clientAssertionType,
@Query("client_assertion") String clientAssertion);
@POST("oauth2/v2.1/token")
@FormUrlEncoded
Call issueChannelTokenByJWT(
@Field("grant_type") String grantType,
@Field("client_assertion_type") String clientAssertionType,
@Field("client_assertion") String clientAssertion);
@POST("/oauth2/v2.1/revoke")
@FormUrlEncoded
Call revokeChannelTokenByJWT(
@Field("client_id") String clientId,
@Field("client_secret") String clientSecret,
@Field("access_token") String accessToken);
/**
* Issues a short-lived channel access token. Up to 30 tokens can be issued. If the maximum is exceeded,
* existing channel access tokens are revoked in the order of when they were first issued.
* It will return a failed {@link CompletableFuture} with {@link ChannelAccessTokenException} if
* it has an error during calling the API.
*/
@FormUrlEncoded
@POST("v2/oauth/accessToken")
Call issueChannelToken(@Field("grant_type") String grantType,
@Field("client_id") String clientId,
@Field("client_secret") String clientSecret);
/**
* Revokes a channel access token. It will return a failed {@link CompletableFuture} with
* {@link ChannelAccessTokenException} if it has an error during calling the API.
*/
@FormUrlEncoded
@POST("v2/oauth/revoke")
Call revokeChannelToken(@Field("access_token") String accessToken);
}