You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you haven't installed the SDK yet, please [head over to the QuickStart guide]({{ page.quickstart }}#parse_data/mobile/android/native/new) to get our SDK up and running in Android Studio. Note that we support Android 2.3 and higher. You can also check out our [API Reference](https://parse.com/docs/android/api/) for more detailed information about our SDK.
4
-
5
-
The Parse platform provides a complete backend solution for your mobile application. Our goal is to totally eliminate the need for writing server code or maintaining servers. If you're familiar with web frameworks like Ruby on Rails, we've taken many of the same principles and applied them to our platform. In particular, our SDK is ready to use out of the box with minimal configuration on your part.
6
-
7
-
On Parse, you create an App for each of your mobile applications. Each App has its own application id and client key that you apply to your SDK install. Your account on Parse can accommodate multiple Apps. This is useful even if you have one application, since you can deploy different versions for test and production.
3
+
If you haven't installed the SDK yet, please [head over to the QuickStart guide]({{ page.quickstart }}#parse_data/mobile/android/native/new) to get our SDK up and running in Android Studio. Note that we support Android 2.3 and higher. You can also check out our [API Reference](/Parse-SDK-Android/api/) for more detailed information about our SDK.
Copy file name to clipboardExpand all lines: _includes/arduino/getting-started.md
+2-4
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,9 @@ The Parse platform provides a complete backend solution for your hardware device
6
6
7
7
Note that the Arduino SDK only contains a subset of Parse features found in mobile and desktop. This allows the SDK to be smaller in size and more performant, making it suitable for constrained embedded environments. The Arduino SDK is fully open source, and anyone can contribute to make it better, or make their own changes if necessary. Check out the[ GitHub repository](https://github.com/ParsePlatform/parse-embedded-sdks) for more information.
8
8
9
-
On Parse, you create an App for each of your mobile and embedded applications. Each App has its own application id and client key that you apply to your SDK install. Your account on Parse can accommodate multiple Apps. This is useful even if you have one application, since you can deploy different versions for test and production.
10
-
11
9
## Initialization
12
10
13
-
In order for Parse to know which app is associated with the Arduino device, simply specify the application ID and client key in your`setup` function:
11
+
In order for Parse to know which app is associated with the Arduino device, simply specify the application ID and client key in your`setup` function:
14
12
15
13
```cpp
16
14
voidsetup() {
@@ -19,4 +17,4 @@ void setup() {
19
17
}
20
18
```
21
19
22
-
After this, all calls to the Parse cloud will use the specified app.
20
+
After this, all calls to the Parse Server will use the specified app.
Copy file name to clipboardExpand all lines: _includes/common/data.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ You may import data into your Parse app by using CSV or JSON files. To create a
36
36
37
37
The JSON format is an array of objects in our REST format or a JSON object with a `results` that contains an array of objects. It must adhere to the [JSON standard](http://json.org/). A file containing regular objects could look like:
38
38
39
-
<pre><codeclass="javascript">
39
+
```js
40
40
{ "results": [
41
41
{
42
42
"score":1337,
@@ -47,7 +47,7 @@ The JSON format is an array of objects in our REST format or a JSON object with
47
47
"objectId":"fchpZwSuGG"
48
48
}]
49
49
}
50
-
</code></pre>
50
+
```
51
51
52
52
Objects in either format should contain keys and values that also satisfy the following:
53
53
@@ -63,7 +63,7 @@ In addition to the exposed fields, objects in the Parse User class can also have
63
63
64
64
A file containing a `User` object could look like:
65
65
66
-
<pre><codeclass="javascript">
66
+
```js
67
67
{ "results":
68
68
[{
69
69
"username":"cooldude",
@@ -74,7 +74,7 @@ A file containing a `User` object could look like:
0 commit comments