wechat

Upload Image using POST form data in Python-requests

Upload Image using POST form data in Python-requests Question: I’m working with wechat APIs … here I’ve to upload an image to wechat’s server using this API http://admin.wechat.com/wiki/index.php?title=Transferring_Multimedia_Files url = ‘http://file.api.wechat.com/cgi-bin/media/upload?access_token=%s&type=image’%access_token files = { ‘file’: (filename, open(filepath, ‘rb’)), ‘Content-Type’: ‘image/jpeg’, ‘Content-Length’: l } r = requests.post(url, files=files) I’m not able to post data Asked By: …

Total answers: 8