mirror of
https://bitbucket.org/vendoo/vendoo_v1.0.git
synced 2025-12-25 19:57:41 +00:00
96 lines
4.6 KiB
Markdown
96 lines
4.6 KiB
Markdown
Firebase Authentication Quickstart
|
|
=============================
|
|
|
|
Introduction
|
|
------------
|
|
|
|
- [Read more about Firebase Authentication](https://firebase.google.com/docs/auth/)
|
|
|
|
Getting Started
|
|
---------------
|
|
|
|
- [Add Firebase to your iOS Project](https://firebase.google.com/docs/ios/setup).
|
|
|
|
|
|
### Google Sign In Setup
|
|
- Go to the [Firebase Console](https://console.firebase.google.com) and navigate to your project:
|
|
- Select the **Auth** panel and then click the **Sign In Method** tab.
|
|
- Click **Google** and turn on the **Enable** switch, then click **Save**.
|
|
- In XCode, add a custom URL scheme for your reversed client ID.
|
|
- You can find this in the `GoogleService-Info.plist`
|
|
- Run the app on your device or simulator.
|
|
- Select **Sign In** and select Google to begin.
|
|
|
|
### Facebook Login Setup
|
|
- Go to the [Facebook Developers Site](https://developers.facebook.com) and follow all
|
|
instructions to set up a new Android app. When asked for a bundle ID, use
|
|
`com.google.firebase.quickstart.AuthenticationExample`.
|
|
- Go to the [Firebase Console](https://console.firebase.google.com) and navigate to your project:
|
|
- Select the **Auth** panel and then click the **Sign In Method** tab.
|
|
- Click **Facebook** and turn on the **Enable** switch, then click **Save**.
|
|
- Enter your Facebook **App Id** and **App Secret** and click **Save**.
|
|
- Open your regular `Info.plist` and replace the value of the `FacebookAppID` with "fb" + the ID of the Facebook app you just created, e.g fb124567.
|
|
- Run the app on your device or simulator.
|
|
- Select **Sign In** and select Facebook to begin.
|
|
|
|
### Email/Password Setup
|
|
- Go to the [Firebase Console](https://console.firebase.google.com) and navigate to your project:
|
|
- Select the **Auth** panel and then click the **Sign In Method** tab.
|
|
- Click **Email/Password** and turn on the **Enable** switch, then click **Save**.
|
|
- Run the app on your device or simulator.
|
|
- Select **Sign In** and select Email to begin.
|
|
|
|
### Twitter Login Setup
|
|
- Go to the [Twitter Developers Site](https://apps.twitter.com/) and follow all
|
|
instructions to set up a new iOS app.
|
|
- Go to the [Firebase Console](https://console.firebase.google.com) and navigate to your project:
|
|
- Select the **Auth** panel and then click the **Sign In Method** tab.
|
|
- Click **Twitter** and turn on the **Enable** switch, then click **Save**.
|
|
- Enter your Twitter **API Key** and **App Secret** and click **Save**.
|
|
- Open your regular `Info.plist` and replace the value of the `consumerKey` and `consumerSecret` values with the keys from the Twitter app you just created.
|
|
- Run the app on your device or simulator.
|
|
- Select **Sign In** and select Twitter to begin.
|
|
- Note: you can also integrate with Twitter via Fabric using `[Fabric with:@[ [Twitter class] ]];`
|
|
|
|
### Custom Authentication Setup
|
|
- Go to the [Google Developers Console](https://console.developers.google.com/project) and navigate to your project:
|
|
- From the left "hamburger" menu navigate to the **API Manager** tab.
|
|
- Click on the **Credentials** item in the left column.
|
|
- Click **New credentials** and select **Service account key**. Select **New service account**,
|
|
pick any name, and select **JSON** as the key type. Then click **Create**.
|
|
- You should now have a new JSON file for your service account in your Downloads directory.
|
|
- Open the file `web/auth.html` in your computer's web browser.
|
|
- Click **Choose File** and upload the JSON file you just downloaded.
|
|
- Enter any User ID and click **Generate**.
|
|
- Copy the token link displayed.
|
|
- Run the app on the simulator.
|
|
- Select **Sign In** and select Custom to begin.
|
|
- Paste in the token you generated earlier.
|
|
- When you return to the main screen, you should see the User ID you entered when generating the
|
|
token.
|
|
|
|
Support
|
|
-------
|
|
|
|
- [Firebase Support](https://firebase.google.com/support/)
|
|
|
|
License
|
|
-------
|
|
|
|
Copyright 2016 Google, Inc.
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more contributor
|
|
license agreements. See the NOTICE file distributed with this work for
|
|
additional information regarding copyright ownership. The ASF licenses this
|
|
file to you under the Apache License, Version 2.0 (the "License"); you may not
|
|
use this file except in compliance with the License. You may obtain a copy of
|
|
the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
License for the specific language governing permissions and limitations under
|
|
the License.
|