forked from bane73/firebase4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
97 lines (60 loc) · 3.23 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
Firebase4j
Note: THIS PROJECT IS STILL IN ALPHA.
REQUIREMENTS
In order to use this project, you must first acquire a Firebase workspace-
url. You can obtain a workspace-url by signing up for early-access to their
private-beta.
Alternatively, you can run through their tutorial and then use the auto-
generated workspace-url the tutorial provides you with. This url, however,
is transient so don't put any data in there you want to keep around.
You should also review the Firebase documentation and tutorial, as this
interface is only meant to provide a thin wrapper around their REST API.
Their REST API documentation can be found at:
http://www.firebase.com/docs/rest-api.html
Their tutorial can be found at:
http://www.firebase.com/tutorial/
CURRENT FUNCTIONALITY
This project currently supports GET, PUT, POST, and DELETE to perform real-
time notifications to clients from the back-end. However, the reverse is
not true; so, if a client updates the firebase-data, the back-end will not
automatically be aware of it.
You could theoretically implement some sort of polling and delta-parsing on
the back-end in order to accomplish this, but this wrapper does not (yet?)
take care of that for you.
Of course, if your clients are also subscribing directly to the firebase-
data, they would naturally be made aware of any changes by another client
since this is existing native behavior of the Firebase API.
"LOOK, MA, NO HANDS!" (but they aren't tied either!)
The goal of this project is to do all of the mundane-lifting for you, but
efforts have been made to do this in a flexible enough way that it doesn't
limit you too much either.
So, this project allows you to interact with the firebase exclusively using
Map<String, Object>.
However, should you need or want to, you can opt to both provide your own
JSON as well as work directly with the JSON returned by the firebase.
Hopefully I have achieved the best balance between ease-of-use and
flexibility; please feel free to contact me with your input if you think I
can do a better job of achieving that goal.
EXAMPLE (for more example-code, refer to the Demo.java file)
// create the firebase
Firebase firebase = new Firebase( your_firebase_workspace_url );
// PUT a map of some data into the firebase
Map<String, Object> dataMap = new LinkedHashMap<String, Object>();
dataMap.put( "PUT", "This was PUT into your workspace root" );
response = firebase.put( dataMap );
// GET the map back out of the firebase
response = firebase.get();
System.out.println( response );
// alternatively, you can get a few details about the response
response.getSuccess(); // true/false if method finished successfully
response.getCode(); // http-code of method-request
response.getBody(); // a map of the data returned
response.getRawBody(); // the data returned in it's raw-form (ie: JSON)
// another alternative, you can PUT/POST your own JSON if you want
response = firebase.put( "PUT2", "{ 'key': 'Some value' }" );
HELP
Please submit usage-questions to: [email protected]
BUGS
Please submit all bugs to: https://github.com/bane73/firebase4j/issues
COPYRIGHT
Copyright (c) 2012 by Brandon Gresham. See LICENSE.txt for details.