我认为我正在使用一个糟糕的API设计,根据我需要在请求中将照片字节作为JPEG发送的文档,我的问题是:如何在text / json中发送这些字节?以下是将照片发送到此API的文档。
Documentation of sending photos to API
下面是我在python中的put请求:
reply = requests.put(url, data=blob, headers=self.headers)
其中blob是图像的二进制。
答案 0 :(得分:0)
找到解决方案,之前只需将blob编码为base64,然后使用json.dumps。
public class HomeController : Controller
{
private HRModel.db_HRSystemModel db = new HRModel.db_HRSystemModel();
public IActionResult Index()
{
var staff = (from s in db.Hrstaffpersonaldetails
where s.Firstname == "Ian"
select s).ToList();
return View(staff);
}
}