从php将数据推送到Firebase

时间:2016-08-17 08:09:23

标签: php android firebase firebase-realtime-database

我正在尝试通过我的服务器脚本将一些数据推送到我的Firebase数据库中。 我正在使用Firebase文档https://firebase.google.com/docs/database/web/save-data#fan-out,我知道我需要粘贴此代码:

    <script src="https://www.gstatic.com/firebasejs/3.2.1/firebase.js"></script> <script>   
    // Initialize Firebase 
  var config = {
            apiKey: "my_apiKey",
            authDomain: "my_authDomain",
            databaseURL: "my_databaseURL",
            storageBucket: "my_storageBucket",   };   firebase.initializeApp(config); 
     </script>

有人可以帮助我,我可以将它放在我的服务器中吗?

下面,我创建了index.html以推送一些数据:

<html>
<head>
    <title>Insert into Firebase</title>
        <script src='https://code.jquery.com/jquery-2.1.3.min.js'></script>
</head>

<body>
    <form action='insert_into_firebase.php' method='post' id='myform' >
    <p>
    <input type='text' name='name' placeholder='name' id='name' />
    </p>

    <p>
    <input type='text' name='message' placeholder='message' id='message' />
    </p>

    <button id='insert'>Insert</button>

    <p id='result'></p>
    </form>
</body>
</html>

我知道我需要一些.php脚本,比如“insert_into_firebase.php”。 我有两个值(名称,文本)插入Firebase中的数据库。

我想注意我正在学习本教程中有关Android聊天应用程序https://www.youtube.com/watch?v=Yt75ZIGdJ4Y&t=791s的内容,我可以通过Android应用程序插入此数据(名称,文本)并阅读它,但我想粘贴它通过我的服务器脚本。

0 个答案:

没有答案