Skip to content

fudepita/Unity3d_Login_Example_Project

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PlayFab Login Example README (v2.0)

  1. Overview:

This repo exits to inform our developers and customers about the many PlayFab-supported login flows as well as the best practices around how to use them.

  1. Prerequisites:

This repo contains the raw Unity3d (v5.1) project.

  1. This demo is intended to illustrate generic best practices around authenticating players with PlayFab's supported login flows.
  2. While not exclusively relevant for mobile, this demo makes heavy use of device IDs (which do not have an equivalent on PC / Mac / Web)
  3. All authentication done through PlayFab revolves around the concept of the PlayFab account.
  • These accounts can be:
    • Partial (A.K.A. guest accounts) - These accounts do not have complete player information (username, password, email). These accounts are created when the CreateAccount parameter is true when calling any of our LogInWith____() APIs (Facebook Example).
    • Complete - These are accounts have a username, password and email.
  • Multiple authentication pathways can be linked to a PlayFab account. This is a powerful feature allowing a player to easily play and retain their player information across platforms.
    • Example: When linked, a player can log in using Facebook, Google+, email, or GameCenter and be assured that his or her player data persists across the various pathways.
    • Documentation on linking accounts can be found here.

To connect to the PlayFab service, your machine must be running TLS v1.1 or better.

  1. Source Code & Key Repository Components:

PlayFab Components

  • PlayFab Unity SDK -- Our standard Unity package. Provides C# wrapper classes for accessing our web API from within Unity.
  • PlayFab Samples -- Contains all of the assets and scripts needed for running this sample. Start with "Assets/PlayFabSamples/Scenes/LoginFlow.unity".

3rd Party

  • Google_Play_Games Plugin (v6.1.7-000) -- The Google Play Games plugin for Unity allows you to access the Google Play Games API through Unity's social interface.
  • Facebook Unity Plugin (v6.2.1) -- The Facebook SDK for Unity provides a comprehensive collection of Facebook's social features, giving players of your Unity game the ability to share content with their friends and allowing you to create a personal, social gaming experience.
  • GooglePlusForUnity Plugin -- A custom Android plugin for obtaining the Google auth token contributed by Hamza Lazâar, an active developer in the PlayFab community.
  1. Installation & Configuration Instructions:

  1. Clone the repo to your local machine and open the directory with Unity. LoginFlow is the primary scene in this example.

  2. Open the LoginFlow scene and build /run the project.

  3. This scene will take you through the following flow:

  4. Check for the saved login information & set the last used pathway to login automatically. * This prompts for passwords (pf account), we do NOT condone storing passwords.

  5. If no previous accounts were found and the platform is mobile automatically log in after a short countdown (this countdown is primarily for this demo, most games activate this instantly).

  6. Check to see if device ID is valid ( use login using createaccount = false).

  7. If countdown is not canceled & device id is new ( use login using createaccount = true ).

  8. Provide manual login with all available options for the platform (saves pathway for next time).

  9. Provide a registration field for new PlayFab accounts (automatically login after account creation);

  10. Troubleshooting:


For a complete list of available APIs, check out the online documentation.

Contact Us

We love to hear from our developer community! Do you have ideas on how we can make our products and services better?

Our Developer Success Team can assist with answering any questions as well as process any feedback you have about PlayFab services.

Forums, Support and Knowledge Base

Special Thanks to Hamza Lazâar

#####(Check out his Twitter @RealJohnTube) Hamza Lazâar has generously shared sample code for showing how to create a Google Play plugin that returns a google+ authentication token. This plugin provides the needed information for using LoginWithGoogleAccount on Android devices.

His contributions include:

  • Assets/PlayFabSamples/Login/Scripts/HamzaScripts
  • Plugins/Android/GooglePlusForUnity
  1. Copyright and Licensing Information:

Apache License -- Version 2.0, January 2004 http://www.apache.org/licenses/

Full details available within the LICENSE file.

  1. Version History:

  • 4/13/15 -- Initial Public Release (v1.52)

Coming in Future Versions

  • Steam Authentication Example
  • Account Pathway linking and unlinking
  • Integrated PlayFab Plugin examples

About

This repo exists to inform our developers and customers about the many PlayFab supported login pathways as well as the best practices around how to use them.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 84.0%
  • Objective-C 13.1%
  • Java 1.6%
  • Objective-C++ 1.1%
  • HTML 0.2%