码迷,mamicode.com
首页 > 其他好文 > 详细

HTTP请求415错误 – 不支持的媒体类型(Unsupported media type)

时间:2014-09-22 18:06:22      阅读:385      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   for   2014   div   

HTTP请求415错误 – 不支持的媒体类型(Unsupported media type)

通常有以下情况:

1:检查你的 http 请求头信息,比如 因为 User-Agent 被服务器设置 拒绝请求了;

    比如你写的的爬虫,就很有可能因为没有伪装成浏览器,被拒绝请求

    user-agent 详情

2:查看你的 http 请求方法,以及服务器端的设置

   比如:有一个 强制用 post 请求的接口,你是不是用了非post 请求

3:post 请求参数设置,是不是必须的,json 格式

   比如下面,两段代码,

  如下 json参数,body

 

import requests
import json


payload={"userName":"names","userCode":"123456","phoneNum":"7800","regPic":"picData"}
headers={content-type: application/json}
burl="http://httpbin.org/post"

r=requests.post(burl, data=json.dumps(payload), headers=headers)

print r.text

bubuko.com,布布扣

 

  如下 form 格式 参数

import requests
import json


payload={"userName":"names","userCode":"123456","phoneNum":"7800","regPic":"picData"}
headers={content-type: application/json}
burl="http://httpbin.org/post"

r=requests.post(burl, data=payload, headers=headers)

print r.text

bubuko.com,布布扣

  

HTTP请求415错误 – 不支持的媒体类型(Unsupported media type)

标签:style   blog   http   color   io   os   for   2014   div   

原文地址:http://www.cnblogs.com/cocoajin/p/3986204.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!