什么是 Mashape 钥匙?

What is a Mashape Key?

我正在做一些测试,我想使用 these API.
发出一个成功的请求 我试着提出如下要求:

response = unirest.get("https://omgvamp-hearthstone- 
v1.p.mashape.com/cards/Ysera",
  headers={
    "X-Mashape-Key": "<required>",
    "Accept": "application/json"
  }
)

但我得到以下信息:

>>> response.code
403

我怎样才能满足我的要求?什么是 X-Mashape-Key 字段?为什么我需要它?

嗯,"X-Mashape-Key" 似乎是某种授权。 403 错误表示服务器即使授权也拒绝请求。似乎无法对给定的 url 提出请求。您确定可以向 URL 提出请求吗?尝试使用 Requests 库使用 GET 请求手动执行此操作,并在请求中发送 headers。 以下是有关 403 错误的更多信息。