简体   繁体   English

在哪里获得“&#39; <YOUR APP URL> “”来自深流

[英]Where to get “'<YOUR APP URL>'” from deepstream

All: 所有:

I am trying to follow the tutorial on deepstreamhub 我正在尝试按照deepstreamhub上的教程进行操作

there is one section talking about how to add deepstream in, 有一节讨论如何在其中添加深度流,

new Vue({
    el: '#app',
    data: {
        ds: null,
    },
    created: function() {
        this.ds = deepstream('<YOUR APP URL>')
        .login()
    }
})

I wonder How can I get my "<YOUR APP URL>" ? 我想知道如何获取我的"<YOUR APP URL>"

Thanks 谢谢

I am not sure if this answer is useful at the moment or not, but as per the news from January 2018, deepstreamhub platform was shutdown and not up and running, hence you are unable to register/signup for an account. 我不确定该答案目前是否有用,但根据2018年1月的消息,Deepstreamhub平台已关闭且未启动并正在运行,因此您无法注册/注册帐户。

Here is the answer from one of the founders of deepstreamhub which you might want to read. 是您可能想要阅读的Deepstreamhub创始人之一的答案。

Your app url should be an ip on which you run deepstream server. 您的应用程序网址应该是运行Deepstream服务器的IP。 For example if you use it locally it can be; 例如,如果您在本地使用它,可以使用它。

this.ds = deepstream('localhost:6020') this.ds = deepstream('localhost:6020')

6020 is the default port 6020是默认端口

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM