Newer
Older
CosmosClient / app / src / main / java / com / example / cosmosclient / resources / UsersRest.java
k-morimoto on 13 Jun 2019 647 bytes resourcesファイル作成
package com.example.cosmosclient.resources;

import com.example.cosmosclient.views.SigninResponse;
import com.example.cosmosclient.views.SignupResponse;

import retrofit2.Call;
import retrofit2.http.Field;
import retrofit2.http.FormUrlEncoded;
import retrofit2.http.POST;
import retrofit2.http.Path;
import retrofit2.http.Query;

public interface UsersRest {
    @POST("users/{uId}/login")
    Call<SigninResponse> loginList(@Path("uId") String uId, @Query("pw") String pw);

    @POST("users")
    @FormUrlEncoded
    Call<SignupResponse> createUser(@Field("name") String name, @Field("pw") String pw, @Field("icon-image") String icon_image);

}