Newer
Older
CosmosClient / app / src / main / java / com / example / cosmosclient / resources / UsersRest.java
k-morimoto on 1 Oct 2019 666 bytes for文修正
package com.example.cosmosclient.resources;

import com.example.cosmosclient.entities.SigninResponse;
import com.example.cosmosclient.entities.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")
    @FormUrlEncoded
    Call<SigninResponse> login(@Path("uId") String uId,@Field("pw") String pw);

    @POST("users")
    @FormUrlEncoded
    Call<SignupResponse> createUser(@Field("name") String name, @Field("pw") String pw, @Field("iconImage") String icon_image);
}