How to convert an InMemoryUploadedFile in django to a fomat for flickr API?

旧巷老猫 提交于 2019-12-11 10:46:17

问题


I have a class that uploads a file to Flickr. The file is of type
'InMemoryUploadedFile'.

I would like to know how to convert or pass the data in the 'InMemoryUploadedFile' file, to a format for flickr's API?

Eg:

{'photo': ('image.jpg', <InMemoryUploadedFile: image.jpg (image/jpeg)>)}

Upload API: https://www.flickr.com/services/api/upload.api.html

Error Code

<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="fail">
    <err code="4" msg="Filesize was zero" />
</rsp>

回答1:


InMemoryUploadedFile is a wrapper around a file object. You can access the file object using the file attribute. So, in your example, try passing this to the Flickr API:

{'photo': my_in_memory_file.file}

If that doesn't work, please edit your question with more detail around the code you're using to submit the request.




回答2:


The data inside the InMemoryUploadedFile onbject was extracted and passed to Flickr succesfully via:

import StringIO
file.seek(0)
file_handle = StringIO.StringIO(file.read())
{'photo': ('image.jpg', file_handle)}

Thanks



来源:https://stackoverflow.com/questions/36417049/how-to-convert-an-inmemoryuploadedfile-in-django-to-a-fomat-for-flickr-api

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!