There is currently no feature for auto logout. Possibly this is an enhancement the usergrid team would consider.
Check the jar file size, it should be 48581037. You might just need to delete the file and let a127 download it again.
To do this, you would use the assignRole function. Search for "Usergrid.Entity.prototype.assignRole" in apigee.js for more details.
Unfortunately Usergrid isn't really good for an Open API and you should put it behind a management layer like Apigee Edige. Log into your Apigee account and click on Create and Manage APIs. In there you can manipulate the JSON payload by extracting blocks or individual elements (like below where...
When you validate the access_token Apigee will populate a variable for clientid (check the variables in the trace tool on the policy you're using validate the token). It should also populate the product that is associated with the key. While you can build policies around a client_id, it's better to...
I found the sample apps provide by Usergrid Android - https://github.com/apigee/usergrid-sample-android-messagee HTML5 - https://github.com/apigee/usergrid-sample-html5-messagee...
It depends. Are you on version 1.0 or 2.0? The class for changing in 1.0 is here. https://github.com/apache/incubator-usergrid/blob/master/stack/core/src/main/java/org/apache/usergrid/persistence/cassandra/CassandraService.java#L97 Version 2.0 is here https://github.com/apache/incubator-usergrid/blob/two-dot-o/stack/core/src/main/java/org/apache/usergrid/persistence/cassandra/CassandraService.java#L93 It's not yet configurable, maybe open a ticket for it? https://issues.apache.org/jira/browse/USERGRID/...
Looks like an extra forward slash in the URL between myapp and pets. A bug ticket needs to be filed in the Apache Usergrid jira. I can do this.
node.js,apigee,usergrid,apigee127
You are breaking scoping. You function takes request but you also have loaded var request = require('request'). Change it such that you have: var request = require('request'); function summary(req, res) { request.get(url).pipe(res); } ...
There is no concept of subcollection, but you can use connections. So you can do something like this: POST cats/fluffy/hasa/toys/ball The above would mean that that an entity of type "cat" is connected to an entity of type "toy" that is called "ball" by a connection verb "hasa". You can...
There are two different kinds of users in Usergrid: admin users and app-level users. For admin level users, you can hit an endpoint like this to get orgs/apps that admin user is an administrator of: GET /management/users/username or email of admin user?access_token=your token here From your description, I think you...