Questions tagged [usergrid]

Apache Usergrid is a Backend-as-a-Service (“BaaS”) built on Cassandra, and accessible via a REST API. Any app can store data in Usergrid. There's an SQL-like syntax for running queries, with full property indexing, full-text search, and geolocation search.

Apache Usergrid is an open-source project implementing a NoSQL Backend-as-a-Service (“BaaS” or “mBaaS”) that can be used in any app to store any structured data. The store is built on Cassandra, and it offers several ways for apps to connect: a REST API, and a number of client-side libraries for JavaScript, Objective-C, and so on.

For administering the system, there's an admin portal that enables developers to rapidly build and manage web and/or mobile applications.

Usergrid provides the most common services required for building apps, such as user registration & management, data storage, file storage, roles, and permissions, and features SQL-like syntax for running queries, with full property indexing, full-text search, and geolocation search.

Project Homepage
http://usergrid.apache.org/

107 questions
1
vote
0 answers

How to use hierarchical group in apache usergrid?

According to usergrid documentation - Groups are hierarchical. Every member of the group /groups/california/san-francisco is also a member of the group /groups/california (https://usergrid.apache.org/docs/user-management/group.html) Based on…
akm
  • 41
  • 1
  • 4
1
vote
1 answer

error in creating build for launcher in Apache Usergrid

I am new to usergrid. I have checkout latest code and do initial steps from docs. Now I am stuck with a problem facing in launcher. I have open only launcher in modules of stack's pom.xml and try to build and I am continuously getting the same error…
1
vote
1 answer

Usergrid query on unknown sub properties

I'm trying to query a collection of data with entities that contain the "related" property: ...,{ related : { global: [{name: "foo"}, {name: "bar"}] }, { local: [{name: "bar"}] }, { random: [{name: "foo"}] }, { dingbat:…
jeremylach
  • 75
  • 7
1
vote
1 answer

Upload Multiple Assets to an Entity

On documentation it is said that Only 1 asset can be attached to an entity. Is there any way to attach multiple images to an entity?
Lionel
  • 604
  • 9
  • 26
1
vote
1 answer

unable to post file on usergrid using requests

I am able to post file with curl curl -X POST -i -F name='memo.txt' -F file=@/home/tester/Desktop/memo.txt 'http://localhost:8080/***/***/concerts/008? access_token=YWMtraI2DF21EeWx_Rm4tdnmrwAAAVACjcyGG8TpdXJBXdjnRJ2SeqIAZI1T8Xk' But when I tried…
Lionel
  • 604
  • 9
  • 26
1
vote
1 answer

usergrid set type column

Is it possible to insert set type data (column) in usergrid (as cassandra support set type column). I tried curl -XPOST http://localhost:8080/// -d '{"name":"1974", "category":{"a","b","c"}}' but it reply…
Lionel
  • 604
  • 9
  • 26
1
vote
1 answer

Tracking upload progress of asset upload

Can I track the upload progress of asset when attaching to an entity using the javascript SDK? Also my image is base64 encoded and embedded within a div (indeed as a img src attribute). When I try to attach this as a binary content I get the error…
Dilshan
  • 3,231
  • 4
  • 39
  • 50
1
vote
1 answer

Pagination in html5 javascript SDK

For the pagination I went through the documentation and understood that it is based on a cursor where you have to specify it to navigate back and forth. I have a requirement to navigate to first page and last page. Like you normally see in…
Dilshan
  • 3,231
  • 4
  • 39
  • 50
1
vote
1 answer

Does usergrid support 3rd party integration?

Does Apache usergrid offer the ability to integrate with 3rd party systems via it's SDKs? Specifically, I would like to be able to publish data from a 3rd party source such as an ERP system or CRM as a REST endpoint that is managed by usergrid. For…
mdeangelo272
  • 674
  • 1
  • 5
  • 14
1
vote
1 answer

Does Usergrid store passwords as plaintext or encrypted?

How does usergrid store user passwords ? Are they encrypted and stored or are they stored as plaintext ?
nilesh
  • 35
  • 3
1
vote
2 answers

usergrid 2.0 database setup error

I am trying to get usergrid 2.0 running. I built the sources and deployed to tomcat. the status shows usergrid is running when i try to setup database (http://localhost:8080/system/database/setup) it results in an error. "Error migrating Core…
nilesh
  • 35
  • 3
1
vote
1 answer

Given a user access token, how to retrieve user profile from usergrid?

If I have a usergrid generated user access token, how do I get the user profile (username, organization, etc.) information from it ? I am planning to expose a REST api service which would use usergrid as a backend to store multitenant data. The…
nilesh
  • 35
  • 3
1
vote
1 answer

Assign Role when user login APIGEE + USERGRID

I am new in APIGEE + Usergrid , I am using function for user login below client.login(username, password, function (err) { if (err) { alert('Invalid username or password.'); $(".ajax_loader").hide(); …
Vipin
  • 111
  • 1
  • 10
1
vote
1 answer

Business Logic in Apigee | on client side or on API management?

We are using Apigee BaaS to power a mobile application. So far we have been using Apigee BaaS for CRUD operations on a collection. We use the in-built Facebook login to authenticate the user. Now, we have different requirements due to which we have…
lonelymo
  • 3,972
  • 6
  • 28
  • 36
1
vote
1 answer

Apache Usergrid Build error on buildling Usergrid Launcher

Hi I am trying to do a fresh build of Apache Usergrid but have been running into a build error when it reaches the Usergrid Launcher. The following is the log that gets displayed when I run: mvn -X clean install -DskipTests=true Am I correct that it…
Alex T
  • 13
  • 2