0

我昨天刚刚了解了 Apigee,并决定稍微修改一下。我正在通过安装文章将其实现到 JavaScript 中,并且应该“......在 [I] 实例化它时传递一个带有 UUID 或应用程序服务组织和应用程序名称的 JSON 对象。” 我想我对 JSON 的了解还不够,无法准确理解指令要我做什么。有人可以更详细地向我解释一下我现在应该做什么。

这是他们提供给我的代码...

var client_creds = {
    orgName:'your-org',
    appName:'your-app'
}

//Initializes the SDK. Also instantiates Apigee.MonitoringClient
var dataClient = new Apigee.Client(client_creds);  
4

2 回答 2

0

Just replace the text ('your-org' and 'your-app') properties in the client_creds object with your org and app name (found at https://apigee.com/usergrid/#!/org-overview).

You've now created an instance of the Apigee.Client class; when you use the SDK to make API calls, it'll know which {org} and {app} to place the calls to.

于 2014-01-18T23:59:57.130 回答
0

我相信您已经以​​开发者身份注册了 apigee。如果不是这种情况,请单击此处注册

注册后,默认情况下会为您创建一个称为组织的东西。默认情况下,组织名称是您的用户名。此外,默认情况下,会在 apigee 中为您创建一个名为“沙盒”的应用。要查看它们,请访问此处:https ://apigee.com/usergrid/#!/org-overview 。

现在您可以在您的 sdk 中使用这些东西,将“Your-org”替换为您的组织名称,将“Your-app”替换为“sandbox”(因为默认情况下这已经创建,或者您可以在此处创建一个和那个)

前任:

var client_creds = {
    orgName:'naveen',                # where 'naveen' is a example username/orgname
    appName:'sandbox'
}
于 2014-01-19T04:56:06.087 回答