summaryrefslogtreecommitdiff
path: root/DSACore
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-09-29 17:08:56 +0200
committerTrueDoctor <d-kobert@web.de>2018-09-29 17:08:56 +0200
commit3b161e00dc9880dd80d1d072e065962b1c601a56 (patch)
tree2a470f295d6f36255577cc97da37da83abcc2daf /DSACore
parent680967aee589e4a8d277044b204de07cbe32f41e (diff)
added database autenth
Diffstat (limited to 'DSACore')
-rw-r--r--DSACore/FireBase/Database.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/DSACore/FireBase/Database.cs b/DSACore/FireBase/Database.cs
index cd21c00..725c971 100644
--- a/DSACore/FireBase/Database.cs
+++ b/DSACore/FireBase/Database.cs
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
+using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Firebase.Database;
@@ -12,9 +13,9 @@ namespace DSACore.FireBase
{
static Database()
{
- var auth = "ABCDE"; // your app secret
+ var auth = File.ReadAllText("Token"); ; // your app secret
var firebaseClient = new FirebaseClient(
- "<URL>",
+ "https://heldenonline-4d828.firebaseio.com/",
new FirebaseOptions
{
AuthTokenAsyncFactory = () => Task.FromResult(auth)