apigee网站上的Hello World示例的引用不匹配错误:
var dataClient = new Apigee.Client({
orgName:'your-org', //your Apigee organization name
appName:'your-app'
});
var options = {
endpoint:"users", //the collection to query
qs:{ql:"status='active'",limit:5"} //the query string - note the use of the 'ql' property
};
//Call request to initiate the API call
dataClient.request(options, function (error, response) {
if (error){
//error
} else {
//success
}
});
问:有什么希望一旦我删除" 5?之后