Questions relating to the parse.com hosted service API.
0
votes
1answer
8 views
Is a Parse query fetching an Object multiple times when referenced by multiple rows?
If I do a query in parse where I call "includeKey" to simultaneously fetch referenced objects and the same object is referenced by multiple rows, will it be loaded only once or once per row? If it is ...
0
votes
1answer
18 views
Parse.com how can i save my model using parse cloud js?
had a read of the meme example but it doesn't seem to update, just create new objects! What i want is to
a. find some given db table
b. update some fields in the db table
c. save the db table back to ...
0
votes
0answers
35 views
Parse.com in iOS: Terminating app due to uncaught exception 'NSInternalInconsistencyException' [duplicate]
In my iOS application i integrate parse.com.
in parse.com i applied limits, skip on parseQuery to retrieve bulk amount of data in the form of chunks.
PFQuery *query = [PFQuery ...
0
votes
0answers
20 views
[Parse][Android] How to suppress push notification from being displayed when app is running?
I need to handle with a push notification in two ways:
1) Receive and put a notification on status bar of my android client when app is in background;
2) Receive and handle with a notification ...
0
votes
1answer
37 views
Remove extra from intent in Android
I am using Parse push notifications and have these methods to alert the user with what the message was. How would I show the AlertDialog once and after that remove that data from the intent so that in ...
0
votes
0answers
36 views
In iOS Parse.com, How to stop caching data / cache query
In my app i have used Parse.com to store and retrieve data from server.
I have retrieve data in form of chunks.
[query setLimit: limit];
[query setSkip: skip];
[query ...
0
votes
1answer
21 views
Parse.com as CodeIgniter Backend
I have googled and searched SO for the title above but didn't get much help. I am new on backend side (usually working on frontend), and my boss suddenly want to use Parse for our backend. My ...
0
votes
1answer
46 views
Pass javascript object to java's JsonObject
I am trying to pass some simple javascript object from my Parse.com cloud function (back-end)to my android application.
Here is the code of the javascript class:
function Rate()
{
this.avgRate = ...
0
votes
1answer
40 views
Does anybody have an example of a parse promise that actually works? (Cloud API)
I am trying to get parse.com's fancy new promises to work ~ using the parse cloud API i mean. Sadly, i'm having some trouble - i cannot find any real discussion on how to make it work (the api seems ...
0
votes
1answer
54 views
How to clear Push notification alert on status bar - android
Hi i've used parse push notification in my android app.
i'm not using noraml notification. i've register parse push notification. The notification alert comes from server
device received the push ...
0
votes
0answers
27 views
Phonegap and Parse.com Push Notifications IOS
So I am trying to setup a PhoneGap IOS and Parse.com Push notification app. I am using this plugin https://github.com/mgcrea/cordova-push-notification to register the device with apple and get back ...
4
votes
1answer
40 views
How to Find the Nearest Places based on current lat and long using Parse API(parse.com) in android
I want to find out the nearest places using parse API.When i enter a city name i have to find all the nearest places based on current latitude and longitude.My keywords will be there in parse ...
1
vote
0answers
18 views
Parse.com and PhoneGap empty responses
I have a simple application that is using the Parse.com javascript SDK. It is working fine while in the browser. But once I package it using PhoneGap build, and test it on a device, none of the Parse ...
0
votes
0answers
14 views
Unable to save data using parse.com service
I have just started using Parse.com for back-end purpose for Android application. Although this seems to be trivial but I am struggling to get through. I followed basics step to test if data was sent. ...
0
votes
1answer
30 views
Retrieve ID after save with Parse
I am using the Parse javascript api .
So I am new to using parse. I have createda new class in the data browser and have information saving to it.
What I would like to do is do the save but get the ...
0
votes
2answers
23 views
How to pull saved images from Parse.com into my app
I would like to save some images in Parse Server and like to pull it down into my iOS app. Any idea how to do it?
Any tutorial available? I have tried searching but not able to find any..
0
votes
0answers
14 views
How do I send API push message with .Net / Parse.com? (C#)
This is my application code for sending push message using PARSE
public static string ParseAuthenticate(string strUserName, string
{
var httpWebRequest = ...
0
votes
2answers
35 views
getIntent() method is undefined for type ParseApplication
I am making an android application that allows push notifications through parse.com.
It is not recognizing getIntent() as a method of the import android.content.Intent
Here is the line of code I am ...
0
votes
1answer
19 views
On Parse.com, how can I query for User by 'child' object fields?
I have a simple query I'm trying to perform with Parse that for some reason is not working. I have a "User" class that contains a column pointing to a "Subscription" class. I'm trying to query/get the ...
0
votes
1answer
31 views
Retrieve Fullcalendar events from Parse.com via REST
I'm interested in using fullcalendar to display event information retrieved from a parse.com backend using REST.
Fullcalendar can retrieve JSON info as such:
...
0
votes
0answers
15 views
Parse.com + iOS Avoid simultaneous calls of PFQuery to avoid NSInternalInconsistencyException error crash
Duplicate of :
iOS+ Parse.com app crashes while retrieve data from CACHE. 'NSInternalInconsistencyException','query has outstandng netwrk connection wait until done
have implemented an ...
0
votes
0answers
33 views
iOS+ Parse.com app crashes while retrieve data from CACHE. 'NSInternalInconsistencyException','query has outstandng netwrk connection wait until done
I have implemented an iOS App using Parse.com
Trying to retrieve from cache.
While retrieve data from cache i got an error like this:
Terminating app due to uncaught exception ...
-1
votes
0answers
24 views
Parse.com -[UITableViewController loadView] loaded the “3-view-17” nib but didn't get a UITableView
I'm trying to test Parse with an existing project. I have added the API/Client and setup the app delegate per the quickstart guide and the test was successful. The communication passed and the ...
0
votes
1answer
51 views
iOS+ Parse.com : kPFCachePolicyCacheThenNetwork, retrieve data two times
I have build an iOS app using Parse.com
I want to retrieve data from cache initially & then from network
For this i have used kPFCachePolicyCacheThenNetwork cache policy wchich is opt for my ...
0
votes
2answers
19 views
My image from Parse.com isn't showing.. Using UIImage & UIImageView with PFFile
I have a table on Parse.com that allows me to store Event information. Image, title, date and description. I am trying to obtain the image and assign it to a UIImageView within a custom cell that I ...
0
votes
1answer
16 views
Trying to call parse.com cloud function using maigun route action
I'm trying to use a parse.com cloud function in a mailgun route action (forward).
My action is like this (with my app id and JS key included of course):
...
0
votes
1answer
55 views
Parse.com How to add a ParseUser to Current User for a friendlist
In my application I'm trying to make a friendlist that's relative to the CurrentUser,I've tried looking through the docs of Parse.com and I asked a question about this on Parse.com and a Parser ...
0
votes
0answers
10 views
How do I load images into an IKImageBrowser from Parse.com for an OS/X app
I am trying to download some images from Parse.com into my OS/X app.
I have used a combo of the Parse.com "SavingImages Tutorial" (for iOS) and their OSX ToDo Tutorial.
I seem to be able to download ...
0
votes
0answers
24 views
How to maintain relationships when importing data into Parse.com
I have a database that I'd like to import into Parse.com but having trouble wrapping my head around how the data should be stored in Parse and maintain relationship between this data.
Here's my ...
0
votes
0answers
21 views
Timing issue with jQuery-Mobile and Parse.com
OKAY. I have two separate and distinct JQM pages.
www.site.com/page1 and
www.site.com/page2
So, the user enters the record identifier on a form on page1. On-submit calls a JavaScript Function ...
0
votes
0answers
22 views
How do BAAS solutions both allow custom code and keep things secure?
Baas, backend-as-a-service, solutions like Parse.com and StackMob allow application developers to add and use custom code to run server-side business logic. I'm interested in learning how you could ...
0
votes
1answer
32 views
How to access the information from a FQL query
I've looked on Google for a while on this, but there doesn't seem to be too much information regarding how I can take the dictionary that is returned from a FQL query and save that information to a ...
1
vote
1answer
53 views
Facebook iOS SDK 3.5 crashes on log in. -If facebook app is installed-
I don't know what has changed but it is really strange. I experience this crash on my apps as well as on other apps i download from app store.
Login button on my app behaves as expected but facebook ...
1
vote
0answers
12 views
Can't apply Geo queries in parse (Parse Framework)
I have tried to apply the geopoints in parse but I can't do the query. The code is as follows.
ParseObject placeObject = new ParseObject("placeObject");
ParseGeoPoint userLocation = (ParseGeoPoint) ...
0
votes
1answer
26 views
Working with Parse.com dates
I have dates stored using Parse.com backend. I retrieve them using JSON.stringify. Everything is working fantastic except for dates. I need to convert them to JavaScript dates. I understand that ...
0
votes
0answers
24 views
Using the parse backend to populate a UI in Xcode
I am trying to pull data from my parse database backend service and populate fields into a UI (Using the latest version of Xcode and Parse framework). I have successfully done so with a table view ...
0
votes
1answer
27 views
Creating New Row Each Update to Parse on Android
I scoured StackOverflow and Parse's documentation and support, and could not find the answer, though I am sure it is quite obvious for someone versed in databases. In my Android app, I am creating the ...
2
votes
2answers
62 views
Saving an image to Parse through the REST API, then using it in iOS app
I am developing an application where users are meant to store images on Parse through a web interface. Those images can be then displayed in a native iOS app.
Images are uploaded to Parse through ...
0
votes
2answers
48 views
Extracting data from a Parse.com class and into an NSArray
I'm using the following query to get some data from a Parse.com class.
What I would like to do is extract the Rating object from the NSArray rateObjects. How would I go about doing this?
thanks ...
0
votes
1answer
13 views
Does facebook login require that I use PFUser in my application (using parse.com)?
I am using Parse.com as the backend to my app, and I want to enable login through Facebook. Problem is, I want to make my own User class for my app so that I don't have to conform to certain PFUser ...
0
votes
1answer
21 views
Parse.com Save Object Error
Running into issues when trying to edit an object in Javascript.
Getting a "Error 201: must have user password."
Tried to get the users password and couldn't succeed. Trying to edit the users ...
-1
votes
0answers
35 views
Can't log in to Facebook through AsyncTask with ParseFacebookUtils
i am writing an application that in order to use it you must be a member of a certain group in Facebook.
I have a button in the main activity which launch the Facebook login and do the checkup for ...
0
votes
0answers
27 views
Editing an object with Parse.com and Handlebars.js
What I have is two inputs, one for first name and one for last name and a button to save the two values to the parse database. On load I create two more inputs with the first name and last names ...
0
votes
0answers
12 views
How to get the parse.com notification been displayed in an alertbox in android?
I would like to retrieve parse.com notification thats been displayed in notification bar to been shown in an alertbox.Kindly help me with a snippet on this.Thanks a lot.
0
votes
1answer
48 views
Not passing proper parameters Parse.com
I am developing an application using Parse.com
According to it's error system, it's saying I'm not passing the proper parameters when trying to "login."
Here is my code:
function signInUser() {
...
0
votes
1answer
42 views
Parse.com Sign Up Issue - Javascript
Having issues with my JavaScript application using Parse.com.
It seems like everything is initializing properly, it's just I can't seem to save any of the data to the application. Are my functions ...
0
votes
2answers
37 views
What should be the PFQuery to fetch record for column type “array” at parse?
I am having a column ID with type Array
eg.
ID - ["1","3","5"]
ID - ["2","3"]
ID - ["9","6","3"]
at parse database
Now I want to fetch those records where ID is contained with "3"
...
0
votes
0answers
21 views
How to clear memory of a list of Parse Objects?
I am using Parse-1.1.10.jar from http://parse.com , but problem is array return from parse is of 19 MB in memory size.this memory is not clearing when i am losing the reference of the array list.I ...
0
votes
1answer
56 views
parse.com Reference Error: user is not defined
I found this really cool site called http://parse.com. It is an online database (amongst many other things). Definitely check it out. Anyway, I believe I am one step away from figuring out how to use ...
0
votes
0answers
55 views
Parse, ShareKit and the FacebookSDK - 30 Duplicate Symbols
Im trying to add Parse to a current App that I have. It already has ShareKit included, which has parts (?) of the FacebookSDK included as a submodule.
It also requires me to have the Linker Flags: ...

