Firebase部署卡住/挂起而没有错误消息

时间:2016-05-24 06:47:38

标签: firebase firebase-hosting firebase-tools

命令Firebase deploy在我运行时总是卡住。

以下是详细信息:

    $ firebase deploy --token "SOMETOKEN" --debug
----------------------------------------------------------------------
Command:      /usr/local/bin/node /usr/local/bin/firebase deploy --token SOMETOKEN --debug
CLI Version:  3.0.0
Platform:     darwin
Node Version: v5.0.0
Time:         Tue May 24 2016 14:25:31 GMT+0800 (CST)
----------------------------------------------------------------------

> command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase"]
> refreshing access token with scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase"]
>>> HTTP REQUEST POST https://www.googleapis.com/oauth2/v3/token refresh_token=SOMETOKEN, client_id=XXXXXX-XXXXXX.apps.googleusercontent.com, client_secret=XXXXXX, grant_type=refresh_token, scope=email openid https://www.googleapis.com/auth/cloudplatformprojects.readonly https://www.googleapis.com/auth/firebase
<<< HTTP RESPONSE 200 cache-control=no-cache, no-store, max-age=0, must-revalidate, pragma=no-cache, expires=Mon, 01 Jan 1990 00:00:00 GMT, date=Tue, 24 May 2016 06:25:33 GMT, vary=X-Origin, Origin,Accept-Encoding, content-type=application/json; charset=UTF-8, x-content-type-options=nosniff, x-frame-options=SAMEORIGIN, x-xss-protection=1; mode=block, server=GSE, alternate-protocol=443:quic, alt-svc=quic=":443"; ma=2592000; v="34,33,32,31,30,29,28,27,26,25", accept-ranges=none, connection=close
>>> HTTP REQUEST GET https://admin.firebase.com/v1/projects/hackdaychat
<<< HTTP RESPONSE 200 server=nginx, date=Tue, 24 May 2016 06:25:34 GMT, content-type=application/json; charset=utf-8, content-length=109, connection=close, x-content-type-options=nosniff, strict-transport-security=max-age=31536000; includeSubdomains, cache-control=no-cache, no-store
>>> HTTP REQUEST GET https://admin.firebase.com/v1/database/hackdaychat/tokens
<<< HTTP RESPONSE 200 server=nginx, date=Tue, 24 May 2016 06:25:36 GMT, content-type=application/json; charset=utf-8, content-length=423, connection=close, x-content-type-options=nosniff, strict-transport-security=max-age=31536000; includeSubdomains, cache-control=no-cache, no-store

正如您所看到的,我使用我之前通过firebase login:ci创建的令牌尝试了它。

没有令牌就是同样的结果。

我还创建了本地Firebase项目。 Firebase init期间没有错误。

Firebase --list运行正常。 FireBase loginFirebase logout工作正常。

其他一些信息:

  • $ node -v - &gt; v5.0.0
  • $ npm -v - &gt; 3.3.6
  • $ firebase -V - &gt; 3.0.0
  • OS:OS X 10.11.4
  • 位置:上海,但使用代理到Singapur。
  • 访问Firebase网站可以正常使用。
  • 我拥有我正在使用的项目的所有者权利
  • 我尝试部署某种空项目。意思是:我的公用文件夹只包含index.html404.html

任何人都知道出了什么问题?

2 个答案:

答案 0 :(得分:5)

我遇到了类似的问题

尝试

 @font-face {
    font-family: "Helvetica";
    src:    url("${grailsApplication.config.grails.serverURL}/assets/HelveticaNeueLTCom-BdCn.ttf") format("truetype"),
            url("${grailsApplication.config.grails.serverURL}/assets/HelveticaNeueLTCom-BdCn.woff") format("woff"),
            url("${grailsApplication.config.grails.serverURL}/assets/HelveticaNeueLTCom-BdCn.svg#HelveticaNeueLTCom-BdCn") format("svg");
    -fs-pdf-font-embed: embed;
    -fs-pdf-font-encoding: Identity-H;
}

然后

firebase logout

它适用于我的情况。一旦我登录它似乎firebase应用程序需要额外的权限

firebase login 

答案 1 :(得分:2)

同样在这里

firebase登录和注销工作正常。与init相同。

还尝试使用和不使用令牌。与Frank描述的结果相同。

我支持公司代理。

  • node -v - &gt; v4.4.2
  • firebase --version - &gt; 3.0.1
  • npm -v - &gt; 2.15.0