Use Mashape with R



我正在尝试使用Mashape平台访问不同的api与R(例如epguides或pipl)。我可以直接使用原始的api,但习惯Mashape似乎是一个很好的投资,因为它提供了对大量其他api的统一访问。

    Mashape不提供任何R教程。我尝试了httr包查询Mashape,但没有成功,直到那里。如何使用R查询Mashape ;根据我的测试,Mashape 上的大多数api端点似乎没有响应(即使在平台提供的测试页面上)。 Mashape对每个托管API都是可靠的吗?

问得好,

下面的代码片段可以让你开始:

查询加州洛杉矶下周的天气预报的天气API !

记得用你自己的X-Mashape-Key来改变:)

#imports an http R library
library(httr)
#perform a GET request on the URL, with two headers and store in a resp variable
resp <- GET("https://george-vustrey-weather.p.mashape.com/api.php?location=Los+Angeles", add_headers("X-Mashape-Key" = "MASHAPE-OWN-KEY","Accept" = "application/json"))
#Prints the headers
headers(resp)
#Prints the content of the response
str(content(resp))

希望这对你有帮助!

相关内容

  • 没有找到相关文章

最新更新