如何将文件上传到anonfile api android studio

Posted

技术标签:

【中文标题】如何将文件上传到anonfile api android studio【英文标题】:How to upload files to anonfile api android studio 【发布时间】:2022-01-08 07:00:33 【问题描述】:

我正在尝试制作一个应用程序并能够通过他们的 api 将文件上传到 anonfiles。但是我真的不知道怎么做,因为我从来没有使用过这种类型的api。

请求示例

curl -F "file=@test.txt" https://api.anonfiles.com/upload

我在 webview 中尝试过,它可以工作,但我希望能够在没有 webview 的情况下上传

<form enctype="multipart/form-data" action="https://api.anonfiles.com/v1/upload" method="POST"> 
    <!-- MAX_FILE_SIZE must precede the file input field --> 
    <input type="hidden" name="MAX_FILE_SIZE" value="30000" /> 
    <!-- Name of input element determines name in $_FILES array --> 
    Send this file: <input name="file" type="file" /> 
    <input type="submit" value="Send File" /> 
</form> 

【问题讨论】:

您还在寻找解决方案吗?如果是,我有一个 【参考方案1】:

您需要在 android 中做一些事情才能大声做到。首先,您需要获得访问互联网的权限,即设备上的存储空间。这是一个关于如何做你想做的事的很棒的教程。

https://www.youtube.com/watch?v=j3hdVJ9aCWs

【讨论】:

以上是关于如何将文件上传到anonfile api android studio的主要内容,如果未能解决你的问题,请参考以下文章

如何将multer保存在内存中的文件上传到另一个API

如何使用 html 文件选择器(输入类型 =“文件”)将照片上传到 facebook(图形 api)

如何将图像、pdf、音频、视频和任何文件系统从 iphone 本地内存上传到服务器(API)

如何将 React Native 应用程序上的本地图像文件上传到 Rails api?

如何在 C# 中正确使用 WCF REST API 上的 Stream 将文件(图像/视频/等)上传到服务器?

如何从表单将 2GB+ 的大文件上传到 .NET Core API 控制器?