Example #1
0
        public bool GetPlayerExistBool(string facebookUserID)
        {
            jSonPlayerId = new JSonProcessor.JSonPlayerId("059db4f010c5f40bf4a73a28222dd3e3", "fb_user_id", facebookUserID);

            if (jSonPlayerId.jToken["error"] != null)
            {
                return(false);
            }
            return(true);
        }
Example #2
0
 public string GetItsBetaUserID(string facebookUserID)
 {
     jSonPlayerId = new JSonProcessor.JSonPlayerId("059db4f010c5f40bf4a73a28222dd3e3", "fb_user_id", facebookUserID);
     return(jSonPlayerId.jToken["player_id"].Value <string>());
 }