访问云中心API

时间:2015-11-27 11:43:02

标签: mule mule-studio mule-component cloudhub

https://anypoint.mulesoft.com/apiplatform/anypoint-platform/#/portals/organizations/68ef9520-24e9-4cf2-b2f5-620025690913/apis/8617/versions/40329/pages/35412

/ applications / {domain} / logs 特征:environment_based 检索应用程序的日志消息,从最新到最旧排序。

我正在尝试访问此API,但无法确定它询问的客户端ID。此外,我无法与oauth身份验证相关。 我是骡子的新手。

3 个答案:

答案 0 :(得分:1)

在使用CloudHub API或Anypoint平台API之前,您必须在Anypoint平台上创建一个帐户 - 检查Anypoint API平台的体系结构@ https://docs.mulesoft.com/anypoint-platform-for-apis/anypoint-platform-for-apis-system-architecture

完成Anypoint API平台的注册后,您需要设置用户,角色和作为管理员的特权 - https://docs.mulesoft.com/anypoint-platform-administration/managing-accounts-roles-and-permissions

作为管理员,您需要通过创建&amp ;;来控制对API的访问。提供客户端ID和客户端密钥 - https://docs.mulesoft.com/anypoint-platform-administration/manage-your-organization-and-business-groups

我想这就是你指的客户。它需要存在于所有API的请求中。

就OAuth而言,它在Cloudhub API上并不完全正常。你必须提出支持票。看一下这个 - https://docs.mulesoft.com/mule-user-guide/v/3.7/mule-secure-token-service

如果您是Mule的新手,请浏览Mule Intro视频并试用Anypoint Studio以了解Mulesoft应用程序。

希望这有帮助。

答案 1 :(得分:1)

查看clientID。登录您的CloudHub帐户。点击"齿轮"右上角的图标。单击您组织的名称。你现在应该看到你的" clientID"和#34; ClientSecret" ID。

答案 2 :(得分:1)

我正在分享步骤说明,以便从api访问应用程序的详细信息。

第1步:从Api获取访问令牌

https://anypoint.mulesoft.com/accounts/login?username=YOUR_USERNAME&password=YOUR_PASSWORD

注意:使用POST方法并添加Header Content-Type = application / json

您将获得JSON格式的响应,如下所示

{
  "access_token": "44126898-7ed8-4453-8d28-skajnbf",
  "token_type": "bearer",
  "redirectUrl": "/home/"
}

第2步:获取您的组织ID

https://anypoint.mulesoft.com/accounts/api/me

注意:使用GET方法并在Headers下面添加

Content-Type = application / json

授权=持票人ACCESS_TOKE_YOU_GOT_ABOVE

示例:授权=承载44126898-7ed8-4453-8d28-skajnbf

在回复中,您将有一个部分,您将获得与组织相关的详细信息,如下所示

"organization": {
  "name": "Sample",
  "id": "c1e68d1e-797d-47a5-b",
  "createdAt": "2016-11-29T09:45:27.903Z",
  "updatedAt": "2016-11-29T09:45:27.932Z",
  "ownerId": "68df9a5",
  "clientId": "7200350999564690",
  "domain": "******",
  "idprovider_id": "mulesoft",
  "isFederated": false,
  "parentOrganizationIds": [],
  "subOrganizationIds": [],
  "tenantOrganizationIds": [],
  "isMaster": true,
  "subscription": {
    "type": "Trial",
    "expiration": "2016-12-29T09:45:27.906Z"
  },

第3步:获取环境详细信息

https://anypoint.mulesoft.com/accounts/api/organizations/YOUR_ORGANIZATION_ID_FROM_ABOVE/environments

注意:使用GET方法并在Headers下面添加

Content-Type = application / json

授权=持票人ACCESS_TOKE_YOU_GOT_ABOVE

Example : https://anypoint.mulesoft.com/accounts/api/organizations/c1e68d1e-797d-47a5-b/environments

您将以JSON格式获取响应中的所有可用环境,如下所示

{
  "data": [
    {
      "id": "042c933d-82ec-453c-99b2-asmbd",
      "name": "Production",
      "organizationId": "c1e68d1e-797d-47a5-b726-77asd",
      "isProduction": true
    }
  ],
  "total": 1
}

第4步:现在指定域名并获取日志

https://anypoint.mulesoft.com/cloudhub/api/v2/applications/YOUR_CLOUDHUB_APP_NAME/logs

示例:https://anypoint.mulesoft.com/cloudhub/api/v2/applications/first-test-api-application/logs

注意:使用GET方法并在Headers下面添加

Content-Type = application / json

授权=持票人ACCESS_TOKE_YOU_GOT_ABOVE

X-ANYPNT-ENV-ID = ENVIRONMENT_ID_YOU_GOT_ABOVE

示例:X-ANYPNT-ENV-ID = 042c933d-82ec-453c-99b2-asmbd

您将获得JSON格式的日志,如下所示

{
  "data": [
    {
      "loggerName": "Platform",
      "threadName": "system",
      "timestamp": 1480503796819,
      "message": "Deploying application to 1 workers.",
      "priority": "SYSTEM",
      "instanceId": "583eb1f1c4b27"
    },
    {
      "loggerName": "Platform",
      "threadName": "system",
      "timestamp": 1480503797404,
      "message": "Provisioning CloudHub worker...",
      "priority": "SYSTEM",
      "instanceId": "583eb1f1e4b27"
    }
  ],
  "total": 2
}

注意:为了增强记录,您应该选择适当的部署和实例ID以相似的方式获取日志

希望这有助于初学者