當前位置: 首頁>>代碼示例>>Java>>正文


Java Field類代碼示例

本文整理匯總了Java中retrofit2.http.Field的典型用法代碼示例。如果您正苦於以下問題:Java Field類的具體用法?Java Field怎麽用?Java Field使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Field類屬於retrofit2.http包,在下文中一共展示了Field類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: post

import retrofit2.http.Field; //導入依賴的package包/類
@FormUrlEncoded
@POST("wall.post")
Single<BaseResponse<PostCreateResponse>> post(@Field("owner_id") Integer ownerId,
                                              @Field("friends_only") Integer friendsOnly,
                                              @Field("from_group") Integer fromGroup,
                                              @Field("message") String message,
                                              @Field("attachments") String attachments,
                                              @Field("services") String services,
                                              @Field("signed") Integer signed,
                                              @Field("publish_date") Long publishDate,
                                              @Field("lat") Double latitude,
                                              @Field("long") Double longitude,
                                              @Field("place_id") Integer placeId,
                                              @Field("post_id") Integer postId,
                                              @Field("guid") Integer guid,
                                              @Field("mark_as_ads") Integer markAsAds,
                                              @Field("ads_promoted_stealth") Integer adsPromotedStealth);
 
開發者ID:PhoenixDevTeam,項目名稱:Phoenix-for-VK,代碼行數:18,代碼來源:IWallService.java

示例2: checkIn

import retrofit2.http.Field; //導入依賴的package包/類
@FormUrlEncoded
@POST("xxx")
Flowable<CheckInResponse> checkIn(
        @Field("user_id") String user_id,
        @Field("token") String token,
        @Field("company_id") String company_id,
        @Field("type") String type,
        @Field("location") String location,
        @Field("longitude") double longitude,
        @Field("latitude") double latitude,
        @Field("wifi_name") String wifi_name,
        @Field("wifi_mac") String wifi_mac,
        @Field("file_id") String file_id,
        @Field("remark") String remark,
        @Field("is_force") int is_force,
        @Field("device_name") String device_name,
        @Field("device_no") String device_no,
        @Field("date") String date
);
 
開發者ID:hidetag,項目名稱:CheckIn,代碼行數:20,代碼來源:API.java

示例3: postDataByRx

import retrofit2.http.Field; //導入依賴的package包/類
@FormUrlEncoded
@POST("api/add2gank")
Observable<Object> postDataByRx(@Field("url") String url,
                                @Field("desc") String desc,
                                @Field("who") String who,
                                @Field("type") String type,
                                @Field("debug") String debug);
 
開發者ID:mcxtzhang,項目名稱:csdn-retrofit,代碼行數:8,代碼來源:GankApi.java

示例4: comment

import retrofit2.http.Field; //導入依賴的package包/類
@POST("sys/comments/new")
@FormUrlEncoded
Flowable<ResponseDto> comment(
        @Field("account") String account,
        @Field("content") String content,
        @Field("token") String token
);
 
開發者ID:ruiqiao2017,項目名稱:Renrentou,代碼行數:8,代碼來源:SystemService.java

示例5: formEncodedFieldList

import retrofit2.http.Field; //導入依賴的package包/類
@Test public void formEncodedFieldList() {
  class Example {
    @FormUrlEncoded //
    @POST("/foo") //
    Call<ResponseBody> method(@Field("foo") List<Object> fields, @Field("kit") String kit) {
      return null;
    }
  }

  List<Object> values = Arrays.<Object>asList("foo", "bar", null, 3);
  Request request = buildRequest(Example.class, values, "kat");
  assertBody(request.body(), "foo=foo&foo=bar&foo=3&kit=kat");
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:14,代碼來源:RequestBuilderTest.java

示例6: filterPkg

import retrofit2.http.Field; //導入依賴的package包/類
/**
 * { "status": 0, "msg": "success" }
 */
@FormUrlEncoded
@POST("reqfilter/{iconpack}/{user}")
Call<ResResBean> filterPkg(@Path("iconpack") String iconPack,
                           @Path("user") String user,
                           @Field("pkg") String pkgName,
                           @Field("launcher") String launcherActivity);
 
開發者ID:by-syk,項目名稱:NanoIconPack,代碼行數:10,代碼來源:NanoServerService.java

示例7: doSignUp

import retrofit2.http.Field; //導入依賴的package包/類
@FormUrlEncoded
@POST("/signup")
Call<Void> doSignUp(@Field("id") String id,
                    @Field("password") String password,
                    @Field("email") String email,
                    @Field("name") String name,
                    @Field("registration_id") String resistrationId);
 
開發者ID:JoMingyu,項目名稱:Daejeon-People,代碼行數:8,代碼來源:APIinterface.java

示例8: getPostsList

import retrofit2.http.Field; //導入依賴的package包/類
/**
 * 獲取帖子列表 可獲取全部或者最熱  zuire不為空,約定傳入"zuire"
 * @return
 */
@FormUrlEncoded
@POST("api.php?m=tieba&a=getTieZi")
Observable<HttpResult<List<PostBean>>> getPostsList(@Field("userid") String userid,
                                                    @Field("pageNum") String pageNum,
                                                    @Field("tieba_id") String tieba_id,
                                                    @Field("zuire") String zuire,
                                                    @Field("pageSize") String pageSize);
 
開發者ID:funnyzhaov,項目名稱:Tribe,代碼行數:12,代碼來源:ApiService.java

示例9: directLogin

import retrofit2.http.Field; //導入依賴的package包/類
@FormUrlEncoded
@POST("token")
Single<LoginResponse> directLogin(@Field("grant_type") String grantType,
                                  @Field("client_id") int clientId,
                                  @Field("client_secret") String clientSecret,
                                  @Field("username") String username,
                                  @Field("password") String password,
                                  @Field("v") String v,
                                  @Field("2fa_supported") int twoFaSupported,
                                  @Field("scope") String scope,
                                  @Field("code") String smscode,
                                  @Field("captcha_sid") String captchaSid,
                                  @Field("captcha_key") String captchaKey,
                                  @Field("force_sms") Integer forceSms);
 
開發者ID:PhoenixDevTeam,項目名稱:Phoenix-for-VK,代碼行數:15,代碼來源:IAuthService.java

示例10: getAccessToken

import retrofit2.http.Field; //導入依賴的package包/類
@Headers({
        "Authorization:Basic ZnJvbnRlbmQ6",
        "Content-Type:application/x-www-form-urlencoded"
})
@FormUrlEncoded
@POST("login/oauth")
Call<AccessToken> getAccessToken(@Field("username") String username, @Field("password") String password, @Field("grant_type") String grant_type);
 
開發者ID:freeloki,項目名稱:AndroidThings-BurglarAlarm,代碼行數:8,代碼來源:IgniteService.java

示例11: search

import retrofit2.http.Field; //導入依賴的package包/類
@FormUrlEncoded
@POST("friends.search")
Single<BaseResponse<Items<VKApiUser>>> search(@Field("user_id") int userId,
                                              @Field("q") String query,
                                              @Field("fields") String fields,
                                              @Field("name_case") String nameCase,
                                              @Field("offset") Integer offset,
                                              @Field("count") Integer count);
 
開發者ID:PhoenixDevTeam,項目名稱:Phoenix-for-VK,代碼行數:9,代碼來源:IFriendsService.java

示例12: addActivityOrInvitationComment

import retrofit2.http.Field; //導入依賴的package包/類
@FormUrlEncoded
@POST("api.php/review/add")
Observable<HttpResult> addActivityOrInvitationComment(@Field("uid") String userId,
                                          @Field("by_uid") String otherId,
                                          @Field("type") String type,
                                          @Field("pid") String pid,
                                          @Field("fid") String fid,
                                          @Field("content") String content);
 
開發者ID:funnyzhaov,項目名稱:Tribe,代碼行數:9,代碼來源:ApiService.java

示例13: login

import retrofit2.http.Field; //導入依賴的package包/類
/**
 * 社交係統API,提供與服務器互相交互的接口
 */

// 登錄
@FormUrlEncoded
@POST("login")
Observable<UserResponse> login(@Field("name") String username,
                               @Field("pw") String password);
 
開發者ID:hgs1217,項目名稱:Paper-Melody,代碼行數:10,代碼來源:SocialSystemAPI.java

示例14: postDataByRxNoReturn

import retrofit2.http.Field; //導入依賴的package包/類
@FormUrlEncoded
@POST("api/add2gank")
Completable postDataByRxNoReturn(@Field("url") String url,
                                 @Field("desc") String desc,
                                 @Field("who") String who,
                                 @Field("type") String type,
                                 @Field("debug") String debug);
 
開發者ID:mcxtzhang,項目名稱:csdn-retrofit,代碼行數:8,代碼來源:GankApi.java

示例15: wanted

import retrofit2.http.Field; //導入依賴的package包/類
@FormUrlEncoded
@POST("wanted") Observable<ResponseModel_no_list> wanted(@Field("productName") String productName
        , @Field("price") String price
        , @Field("num") String num
        , @Field("userAddress.addressId") String addressId
        , @Field("deliveryTime") int deliveryTime
        , @Field("pack") int pack
        , @Field("deliveryArea") String deliveryArea
        , @Field("requirements") String requirements
        , @Field("picture") String picture
        , @Field("total") Double total
        , @Field("createType") String createType
);
 
開發者ID:linsir6,項目名稱:TripBuyer,代碼行數:14,代碼來源:Api.java


注:本文中的retrofit2.http.Field類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。