A Backend as a Service (BAAS) provider that simplifies the set-up of network services for your website or mobile application.
Questions tagged [stackmob]
110 questions
0
votes
1 answer
Markers not showing on map after stackmob query
i'm trying to add markers to my map, the coordinates and names are contained in a stop object that i'm getting through a query to a stackmob database, the program runs fine displays the map, but for some reason it looks like its not executing the…

Diego
- 33
- 5
0
votes
1 answer
Update StackMob User Object JS-SDK
I am trying to update a user object using the JS-SDK but I am getting Duplicate key for schema error. What is the correct way to update a user object using StackMob JS-SDK? Below is my code
var Usr = StackMob.Model.extend({schemaName: 'user'});
var…

jai
- 25
- 5
0
votes
1 answer
Error in sample code SnapStack Plus Android
I am running a downloaded application called Snaptack Plus from StackMob. The app runs but when I select a button I am getting an error, the stack trace with the error is below. This is where I think the problem is coming from:
01-11 17:46:52.751:…

Psy Chotic
- 219
- 1
- 3
- 11
0
votes
1 answer
Stackmob SMQuery OR conditioning: "Sort cannot be used with OR statements stackmob"
I am using Stackmob SMQuery and trying to have a Query with 4 OR conditions and sort all the results after all. My code is as below. The problem is
SMQuery *query = [[SMQuery alloc] initWithSchema:STACKMOB_SCHEMA_TESTIMONIAL];
…

thkeen
- 1,857
- 2
- 13
- 16
0
votes
1 answer
StackMob show Toast if User was created successfully
I have a Button which code is like this:
public void buttonRegister(View view){
EditText etUsername = (EditText) findViewById(R.id.etUsername);
EditText etPassword = (EditText) findViewById(R.id.etPassword);
final String username =…

ollidiemaus
- 279
- 2
- 4
- 9
0
votes
1 answer
Stackmob fetchExtended not working
I have started to use Stackmob as a backend for a simple app I am building.
In stackmob I have set a relationship between two schema's and want to use '.fetchExpanded' to grab all of the data from stackmob, see this fiddle (will need to view the…

mcneela86
- 1,029
- 3
- 18
- 35
0
votes
0 answers
Other linker flags -ObjC crashes my app when adding Stackmob SDK
I am trying to add Stackmob SDK to an existing app and it crashes right after the app launches with EXC_BAD_ACCESS. The SDK works fine with any new project, but crashes my existing code. Adding the SDK consists of adding the actual SDK folder,…

Martin Koles
- 5,177
- 8
- 39
- 59
0
votes
1 answer
When I try to add a schema in stackmob it is not getting saved
I was trying to do a tutorial in stackmob but while I try to save a schema and when I come back to it I cant find the changes I made to the schema?Any help??

Abhilash
- 2,864
- 3
- 33
- 67
0
votes
1 answer
stackmob ios datastore http 401 error
I'm using the iOS DataStore API to upload data to StackMob. I get this error when I try to use my smclient initialized with my public key.
HTTP Code=401 "The operation couldn’t be completed. (HTTP error 401.)" UserInfo=0xa14dac0 {error=Insufficient…

ArdenDev
- 4,051
- 5
- 29
- 50
0
votes
0 answers
Attribute changes don't propagate via relationships
I have a "User" and a "Game" entity which are connected to each other with the "users" and "games" relationships (inverses of each other). When I make a change in a game object that is connected to some user object, the last modification date in the…

Bart
- 1,077
- 1
- 12
- 22
0
votes
2 answers
Java: Code Understanding
I'm new to JAVA, but I know Objective-C. I have to write a server side Custom Code and I'm having trouble with the code below:
/**
* This example will show a user how to write a custom code method
* with two parameters that updates the specified…

user1107173
- 10,334
- 16
- 72
- 117
0
votes
1 answer
A library within a project that I would like to use another library
It seems this has been asked before, however I have not found an answer that works for me.
Setup: I am currently creating two static library, that are used in a project. So lets say I have Project, Liba and Libb. Project links to both Liba and Libb,…

n01d3a
- 17
- 5
0
votes
2 answers
performselectorinBackground is not working
In a view I am showing images which I am fetching from coredata, The images I am showing using carousel classes. In the same view I have facebook button which will navigate me to another screen. When I am clicking the Facebook button then the action…

iOSDev
- 412
- 10
- 30
0
votes
2 answers
Assigning fetched NSManagedObject to a property
This question may seem long, but I'm sure it's relativity simple for Core-Data experts. Showing the configuration made this Question long. Thanks!
In CoreData I have a User entity and an NSManagedObject subclass (User.h/.m) created from that…

user1107173
- 10,334
- 16
- 72
- 117
0
votes
1 answer
Stackmob With Facebook Offline Sync
I have started to integrate Facebook in my app using StackMob.
I've been trying to use StackMob's offline sync, but it just seems broken.
In didFinishLaunchingWithOptions:
SM_CACHE_ENABLED = YES;
SMClient *client = [[SMClient alloc]…

Noam Solovechick
- 1,127
- 2
- 15
- 29