All Projects → PhantomAppDevelopment → Firebase As3

PhantomAppDevelopment / Firebase As3

Licence: mit
Integrate Firebase Auth, Realtime Database and Storage in your Adobe AIR projects.

Programming Languages

actionscript
884 projects

Projects that are alternatives of or similar to Firebase As3

Firebaserealtimechat
Sample real-time chat application using Firebase
Stars: ✭ 60 (+9.09%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-auth
Firebase Js Sdk
Firebase Javascript SDK
Stars: ✭ 3,844 (+6889.09%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-auth
Internalappstore
📦 Manage your own internal Android App Store.
Stars: ✭ 295 (+436.36%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-auth
Firebase Ios Sdk
Firebase iOS SDK
Stars: ✭ 3,309 (+5916.36%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-auth
Rxfirebase
Rxjava 2.0 wrapper on Google's Android Firebase library.
Stars: ✭ 509 (+825.45%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-auth
Firebase Php
Unofficial Firebase Admin SDK for PHP
Stars: ✭ 1,657 (+2912.73%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-auth
Firebase Mock
Firebase mock library for writing unit tests
Stars: ✭ 319 (+480%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-auth
Quickstart Cpp
Firebase Quickstart Samples for C++
Stars: ✭ 123 (+123.64%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-auth
React Firebase Hooks
React Hooks for Firebase.
Stars: ✭ 2,227 (+3949.09%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-auth
Laravel Firebase
A Laravel package for the Firebase PHP Admin SDK
Stars: ✭ 369 (+570.91%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-auth
Mechahamster
Mecha Hamster is a game where you roll through customizable environments that you can share with your friends.
Stars: ✭ 314 (+470.91%)
Mutual labels:  firebase, firebase-database, firebase-auth
React Firebase Authentication
🔥 Boilerplate Project for Authentication with Firebase in React.
Stars: ✭ 863 (+1469.09%)
Mutual labels:  firebase, firebase-database, firebase-auth
Abapfire
ABAP Firebase Client
Stars: ✭ 11 (-80%)
Mutual labels:  firebase, firebase-database, firebase-auth
Vuejs Firebase Shopping Cart
Shopping cart demo using Vuejs and Firebase
Stars: ✭ 274 (+398.18%)
Mutual labels:  firebase, firebase-database, firebase-auth
React Redux Firebase Authentication
🔥Boilerplate Project for Authentication with Firebase in React and Redux
Stars: ✭ 265 (+381.82%)
Mutual labels:  firebase, firebase-database, firebase-auth
react-firebase-t3chfest
T3chFest 2017 Workshop about React + Firebase
Stars: ✭ 42 (-23.64%)
Mutual labels:  firebase-auth, firebase-database, firebase-storage
Firebase Admin Java
Firebase Admin Java SDK
Stars: ✭ 345 (+527.27%)
Mutual labels:  firebase, firebase-database, firebase-auth
React Gatsby Firebase Authentication
🐣🔥Starter Project / Boilerplate for Authentication with Firebase and plain React in Gatsby.js
Stars: ✭ 356 (+547.27%)
Mutual labels:  firebase, firebase-database, firebase-auth
Firebase Admin Node
Firebase Admin Node.js SDK
Stars: ✭ 1,050 (+1809.09%)
Mutual labels:  firebase, firebase-database, firebase-auth
Meal Prep
Source code for a 4-part series I wrote about Vue, Vue Router, Vuex and Vuetify
Stars: ✭ 496 (+801.82%)
Mutual labels:  firebase, firebase-database, firebase-auth

Firebase in ActionScript

Firebase is a back end platform that offers several services to aid in the development of apps and games, specially the ones that rely on server side infrastructure.

Some of its services can be accessed by using a RESTful approach. This repository contains detailed guides and examples explaining how to use those services in your Adobe AIR projects.

You won't need an ANE for these guides, all of them work only using StageWebView, URLRequest and URLLoader.

Firebase Auth

Main guide: Firebase Auth

This service allows you to securely authenticate users into your app. It uses Google Identity Toolkit to provide this service. Some of its key features are:

  • Leverages the use of OAuth, saving time and effort.
  • Authenticate with Facebook, Google, Twitter, Email, Anonymous and more.
  • Generates an authToken that can be used for secure operations against Firebase Storage and Firebase Database.

Firebase Database

Main guide: Firebase Database

This service allows you to save and retrieve text based data. Some of its key features are:

  • Securely save and retrieve data using rules and Firebase Auth.
  • Listen to changes in realtime, useful for chat based apps.
  • Data is generated in JSON, making it lightweight and fast to load.
  • Easy to model and understand data structures.
  • Filter, organize and query the data.

Firebase Storage

Main guide: Firebase Storage

This service allows you to upload and maintain all kinds of files, including images, sounds, videos and binaries. It uses Google Cloud Storage to provide this service. Some of its key features are:

  • Securely save, retrieve and delete files using rules and Firebase Auth.
  • Load end edit metadata from files.

Getting Started

This guide assumes you want to use the 3 services in the same application, you will be able to use them with a free account.

Before you start coding you need to follow these steps to prepare your application for Firebase:

  1. Create or open a project in the Firebase Console
  2. You will be presented with 3 options for adding your app to iOS, Android or Web.
  3. Click Web, a popup will appear with information about your project. Copy down your apiKey and authDomain.

From the authDomain we only need the id of the project, an example of an id is: my-app-12345.

You can read the guides in any order but it is recommended to start with the Firebase Auth guide.

FAQs

What is the difference between these guides and existing Firebase ANEs?

Firebase ANEs are based on the Android and iOS official SDKs, providing all of their native features.

These guides are based on the JavaScript SDK, which provides the same functionality from the Web browser but inside the AIR runtime.

Which are the benefits of using these guides?

These guides work on Android, iOS, Windows and OSX using only the ActionScript 3 standard library, this will greatly reduce time when reusing your implementation code for all 4 platforms.

You won't need to embed several ANEs to your project, this is very important for developers who are concerned with the app size.

They are also a great way to understand how Firebase works behind the scenes.

Free and open source!

Why only Database, Auth and Storage, what about the other Firebase features?

These guides are based on the JavaScript SDK and therefore have their same limitation of being web based only. If you need the rest of features that Firebase offers I strongly recommend using an ANE.

How did you got the documentation for Auth and Storage?

I studied the JavaScript SDK and its official documentation, then I determined the API paths, requests, results and errors.

What about Flash Player projects?

For Flash Player projects I recommend using the ExternalInterface class with the official JavaScript SDK.

Donations

Feel free to support the development of free guides and examples. Your donations are greatly appreciated.

Become a Patron!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].