/* * Copyright (C) 2020 Stefan Schüller * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ package net.schueller.peertube.network; import net.schueller.peertube.model.OauthClient; import net.schueller.peertube.model.Token; import retrofit2.Call; import retrofit2.http.Field; import retrofit2.http.FormUrlEncoded; import retrofit2.http.GET; import retrofit2.http.POST; public interface AuthenticationService { @GET("oauth-clients/local") Call getOauthClientLocal(); @FormUrlEncoded @POST("users/token") Call getAuthenticationToken( @Field("client_id") String clientId, @Field("client_secret") String clientSecret, @Field("response_type") String responseType, @Field("grant_type") String grantType, @Field("scope") String scope, @Field("username") String username, @Field("password") String password ); @POST("users/token") @FormUrlEncoded Call refreshToken( @Field("client_id") String clientId, @Field("client_secret") String clientSecret, @Field("grant_type") String grantType, @Field("response_type") String responseType, @Field("username") String username, @Field("refresh_token") String refreshToken ); }