作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
import os
import shelve
import urllib
import urlparse
import sys
import shelve
import oauth2 as oauth
import requests
api_key = 'xyz'
url = 'https://www.googleapis.com/freebase/v1/mqlread?query=hello&key=xyz'
resp, content = requests.request(url, "GET")
print resp
我只是在测试 freebase api。当我运行这个基本脚本时,出现了这个错误:requests.exceptions.MissingSchema: Invalid URL 'GET': No schema supplied有什么理由吗?
最佳答案
我相信你要找的是这个:
>>> import requests
>>> url = 'https://www.googleapis.com/freebase/v1/mqlread?query=hello&key=xyz'
>>> requests.get(url)
<Response [400]>
>>>
来自Requests文档
requests.request(method, url, **kwargs)
It return an instance of the Response object.
因此,您需要以正确的顺序给出参数。
>>> requests.request("GET",url)
<Response [400]>
>>>
关于python - 无效的 URL 'GET' : No schema supplied error while calling freebase api in Python.,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10825312/
我是一名优秀的程序员,十分优秀!