gpt4 book ai didi

android - 带有 Android Retrofit 2.X 的 Rails 回形针 gem 无法正常工作

转载 作者:行者123 更新时间:2023-11-29 20:12:39 26 4
gpt4 key购买 nike

我正在创建 Rails 后端以使用回形针 gem 从浏览器和移动客户端 (Android) 上传图像。它适用于所有网络浏览器、移动浏览器以及 HTTP REST 客户端工具,但不适用于带有改进 http 库的 android 客户端。这是否相互兼容

最佳答案

答案是肯定的让它工作并不容易,但是,

这是我的做法……它对我有用

接口(interface)声明

public interface MultimediaApi {

@Multipart
@POST("api/v1/multimedia")
Call<ResponseBody> uploadMultimedia(@Part("tipo]") String tipo,
@Part("archivo\"; filename=\"myimageName\" ") RequestBody archivo, // archivo is the how we named the field of the file in rails server
// see filename=\"myimageName\" does not have file extension to avoid problems with paperclip content types validations
@Part("texto") String texto,
@Part("acoplable_id") String acoplable_id,
@Part("acoplable_type") String acoplable_type
);
}

在执行线程上

Retrofit retrofit = new Retrofit.Builder()
.baseUrl(RestConnection.BASE_URL_MULTIMEDIA)
.addConverterFactory(GsonConverterFactory.create())
.client(client)
.build();

MultimediaApi apiService =
retrofit.create(MultimediaApi.class);

Call<ResponseBody> call;
MediaType MEDIA_TYPE = MediaType.parse("image/jpeg");
File file = new File(filePath);
RequestBody requestBody = RequestBody.create(MEDIA_TYPE, file);

call = apiService.uploadMultimedia(
type.toString(),
requestBody,
text.toString(),
acopable_id.toString(),
acopable_type.toString()
);

Response<ResponseBody> response = call.execute();


int statusCode = response.code();
if (statusCode == 201) {
// Server response OK
} else {
//failed
Throwable th = new Throwable("Status Code:" + statusCode + " Error uploading image... Response: " + response.body());
return th;
}

这个例子对我帮助很大,为了解决我的问题,我只是做了一些改变让它工作,所以要仔细查看每个细节

https://guides.codepath.com/android/Consuming-APIs-with-Retrofit

https://futurestud.io/blog/retrofit-2-how-to-upload-files-to-server

/**Pura Vida**/

关于android - 带有 Android Retrofit 2.X 的 Rails 回形针 gem 无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34545558/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com