1

我正在尝试通过 DDP 连接到我在http://testsock.meteor.com上部署的流星网站。这个其他答案非常有帮助,但我无法找到我的 URL,根据该答案应该具有以下结构:

ws://ddp--xxxx-{主机名}.meteor.com

你怎么知道的?

我的 meteor.js 文件是:

if (Meteor.isClient) {
    }

    if (Meteor.isServer) {
      Meteor.startup(function () {
        // code to run on server at startup
      });

      Meteor.methods({
        test: function(){
          return 5;
        }
      });
    }

我正在使用pyddp,我将 ddp 到 mywebsite 的 python 文件是:

    import ddp
    import time
    import sys

    client = ddp.ConcurrentDDPClient('wss://testsock.meteor.com:443/websocket')
    client.start()

    while True:
        try:
            time.sleep(1)
            future = client.call('test')
            result_message = future.get()
            if result_message.has_result():
                print 'Result:', result_message.result
            if result_message.has_error():
                print 'Error:', result_message.error

        except KeyboardInterrupt:
            sys.exit()
            client.stop()
            client.join()
            break
4

1 回答 1

1

连接到部署到 meteor.com 的应用程序时,您可以使用以下 URL 方案:

wss://myapp.meteor.com:443/websocket

wss表示加密的 WebSocket 协议 URI 方案,它在 443 端口上运行。

于 2015-11-13T14:37:20.630 回答