apigee baas示例有语法错误

时间:2016-03-05 04:23:37

标签: apigee-baas

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?之后

0 个答案:

没有答案
相关问题