Get OAuth Token from Web API to android
问题 I'm trying to get ِِOAuth token in android from my web api. I have tested the api in Postman and it's working perfect. Screenshot for the successful call from Postman now I need to call this Api from my android app using retrofit 2 to get the token, for that I tried to use the following interface but it's not working. @FormUrlEncoded @POST("/Token") public Call<String> Token(@Field("grant_type") String grant_type, @Field("username") String username, @Field("password") String password); How