Questions tagged [stackmob]

A Backend as a Service (BAAS) provider that simplifies the set-up of network services for your website or mobile application.

Homepage

Developer Documentation

Developer Support

110 questions
16
votes
3 answers

Backend platform for lean sideproject with advanced tagscheme

I'm an experienced frontend developer (Backbone, Coffeescript) and designer with little to no skills concerning backend stuff. I want to build a sideproject without having to worry about setting up a server or maintaining a database. The project has…
zerodot
  • 805
  • 1
  • 7
  • 15
9
votes
1 answer

iOS & Stackmob - [NSNull length]: unrecognized selector sent to instance

In my iOS app I'm trying to update user information in the database (with Stackmob), but I keep getting "unrecognized selector sent to instance." - (IBAction)save:(UIButton *)sender { NSFetchRequest *fetchRequest = [[NSFetchRequest alloc]…
sambol
  • 194
  • 1
  • 2
  • 12
5
votes
2 answers

Creating a wrapper for BeaaS (Parse/Stackmob/...)

I'm currently developing an app using Parse and I'd like to start abstracting their SDK as I don't know if and when I'm going to replace their backend with another by other provider or by ours. Another motivation is separating issues: all my apps…
Fábio Oliveira
  • 2,346
  • 21
  • 30
4
votes
1 answer

How to make FetchRequest in callback block asynchronously

Does anyone know the best practice that how to start another new asynchronous method in the completion block of the first asynchronous communication? I am testing the code to make a call NSFetchRequest(coz STACKMOB iOS SDK internally sync with…
4
votes
2 answers

Parse vs. StackMob vs. other for push notifications service (Appcelerator application)

We have a very basic application (iOS/Android) done in Appcelerator that will receive a single update every week. This update will be sent to all the users subscribed to the push notifications service. By this moment, we have around 35k installs but…
demogar
  • 701
  • 1
  • 8
  • 17
4
votes
1 answer

Stackmob linker error

I've started using Stackmob. I follow the instructions provided and add stackmob to my project, then turn off all of the ARC on those files added, and then I get the linker error. "clang: error: linker command failed with exit code 1 (use -v to see…
Andrius Steponavičius
  • 8,074
  • 3
  • 22
  • 25
3
votes
1 answer

Android Stackmob: Prompting logged in user information

I began to use stackmob for Android development. And I went into an issue. Indeed after creating the interface for the user to log in, I wanted my home page to prompt the actual logged-in user's name on the top of it. So I used the getloggedInUser…
Pclaverie
  • 164
  • 2
  • 17
3
votes
2 answers

Why is executeFetchRequest:fetchRequest leaking memory?

Instruments shows the following code leaks, if I comment out this code there is no leak. NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init]; // Edit the entity name as appropriate. NSEntityDescription *entity =…
Michael Wildermuth
  • 5,762
  • 3
  • 29
  • 48
3
votes
1 answer

NSPredicate traversing relationship (StackMob)

I have been scouring Apple's Predicate Programming Guide and SO as well, trying to determine the correct way to write a predicate for a certain fetch request. It seems like the way I am attempting to use dot notation to traverse a relationship is…
geraldWilliam
  • 4,123
  • 1
  • 23
  • 35
3
votes
1 answer

StackMob local core data storage

I recently decided to make my move to StackMob (from Parse). I have managed to setup core data and i can read and write to StackMob datastore. So far, StackMob offers a list of item to the user. If the user decides to user an item on my app, I want…
zirinisp
  • 9,971
  • 5
  • 32
  • 38
3
votes
1 answer

Does anyone have experience using stackmob as backend for a phonegap app?

What do you recommend to use as backend for a phonegap app tha just needs to allow login, save some user data and send notifications?
2
votes
1 answer

Doing some network operation inside an Adapter

I am developing an application for android on which I have a listview displaying some Users. Thus I want to display their pictures inside this list view so I do as follow: private class StableArrayAdapter extends ArrayAdapter{ private…
Pclaverie
  • 164
  • 2
  • 17
2
votes
3 answers

Can't create Facebook user with access token

I am writing a method which gets the facebook user records from my db on Parse and then recreates the records on StackMob. When I call createUserWithFacebookToken it returns this error: [48887:c07] Error Domain=HTTP Code=401 "The operation couldn’t…
ctatti
  • 170
  • 1
  • 1
  • 11
2
votes
1 answer

Stackmob with requires.js

I'm laying out the basic structure and just started to create models. The issue is that the reference to the initialized Stackmob is lost within the model. main.js require(['modernizr','jquery','backbone', 'underscore', 'routers/router',…
Seth
  • 659
  • 2
  • 7
  • 21
1
vote
1 answer

Stackmob login callback not firing on success

I'm using the stackmob API in an android project and it seems that the callbacks are not called on successful completion. The function that I need to have work correctly is the login function. I have the following function that is called from an…
jdwieber
  • 37
  • 1
  • 6
1
2 3 4 5 6 7 8