我目前遵循本教程:https ://docs.mulesoft.com/anypoint-platform-for-apis/creating-an-apikit-project-with-maven但我在创建 RAML 文件时遇到问题我不知道如何做到这一点,我必须从这两个 API 中获取信息: • http://www.programmableweb.com/api/wikipedia
• http://www.programmableweb.com/api/weather-channel
#%RAML 0.8
title: Title
version: 1.0
baseUri: http://server/api/
schemas:
- Countries: |
{
"$schema": "which link",
"type" : "",
"properties" : {
}
}
Schemas是什么需要使用的?最终目标是创建一个 API,提供有关城市和国家/地区的一些信息。为此,我需要与其他一些 API 提供者(上面的两个链接)进行通信以获取信息并制作 JSON 响应以返回所需的信息。