Mapbox Api 响应保存到数据库中非法吗?
当我向mapbox api发出请求时,
https://api.mapbox.com/geocoding/v5/mapbox.places/Los%20Angeles.json?access_token=YOUR_MAPBOX_ACCESS_TOKEN
我得到的响应如下:
{"type":"FeatureCollection","query":[""]}
然后在最后一个响应中我得到
"attribution":"NOTICE: \u00a9 2022 Mapbox and its suppliers. All rights reserved. Use of this data is subject to the Mapbox Terms of Service (https:\/\/www.mapbox.com\/about\/maps\/). This response and the information it contains may not be retained. POI(s) provided by Foursquare."}
所以我想做的是将响应保存到数据库,然后在需要时使用它,因为比多个请求更有效每次。
结论是我想知道将响应数据保存到数据库是否非法?
When I make request to mapbox api
https://api.mapbox.com/geocoding/v5/mapbox.places/Los%20Angeles.json?access_token=YOUR_MAPBOX_ACCESS_TOKEN
I get the response like :
{"type":"FeatureCollection","query":[""]}
Then in the last of the reponse I get
"attribution":"NOTICE: \u00a9 2022 Mapbox and its suppliers. All rights reserved. Use of this data is subject to the Mapbox Terms of Service (https:\/\/www.mapbox.com\/about\/maps\/). This response and the information it contains may not be retained. POI(s) provided by Foursquare."}
So What I wanted to do is save the response to the db and then use it whenever it is needed because is more efficient then multiple request everytime.
Concluding what I want to know is it illegal to save the reponse data to database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不是律师,但从条款和条件来看,似乎不,你不允许存储他们的内容。这并不奇怪,因为对于许多 API 来说,定价是基于每个请求的。
和:
(强调我的)
要 100% 确定您应该联系律师,请尝试在此处提问,或者直接联系 Mapbox 并要求他们进行澄清。
I am not a lawyer, but from the Terms and Conditions, it seems that no, you're not allowed to store their content. This is not surprising as for many APIs the pricing is based per request.
And:
(emphasis mine)
To be 100% sure you should contact a lawyer, try asking here, or simply contact Mapbox and ask them for a clarification.