File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,14 @@ PHP parse.com API library
2
2
===========================
3
3
More on the parse.com api here: https://www.parse.com/docs/rest
4
4
5
- Authentication Fixed
6
- -----------
7
- The authentication method was recently change, a fix has been made on this library.
5
+ ### Authentication Fixed ###
6
+ The authentication method was recently change on parse's api, a fix has been made on this library.
7
+
8
+ ### Breaking change in recent commit ###
9
+ In order to be consistent with parse's terminology I've changed the variable from $masterkey to $restkey
10
+ When creating a new instance, use 'restkey' in your array now instead of 'masterkey'
11
+
12
+
8
13
9
14
10
15
**Please note**
@@ -20,7 +25,7 @@ CREATE OBJECT
20
25
```
21
26
$parse = new parseRestClient(array(
22
27
'appid' => 'YOUR APPLICATION ID',
23
- 'masterkey ' => 'YOUR MASTER KEY ID'
28
+ 'restkey ' => 'YOUR REST KEY ID'
24
29
));
25
30
```
26
31
You can’t perform that action at this time.
0 commit comments