检索活动从getstream.io API返回未定义的错误

时间:2016-12-22 14:29:29

标签: javascript getstream-io

我正在遵循getstream的文档步骤,一切顺利,直到“Retrieving Activities”步骤。

运行

import stream from 'getstream' // stream-js v3.5.0
const client = stream.connect(APP_KEY, null, APP_ID, { location: 'eu-west' });
const user1 = client.feed('user', '1', READ_ONLY_TOKEN);

user1.get({ limit:5, offset:5 })
  .catch((errorData) => {
    console.log(errorData);
  });

给了我

{
    error: undefined,
    response: {
        statusCode: 0,
        request: {
            uri: {
                protocol: "https:",
                slashes: true,
                auth: null,
                host: "api.getstream.io",
                port: null,
                hostname: "api.getstream.io",
                hash: null,
                search: "?limit=5&offset=5&api_key=...secret...&location=unspecified",
                query: "limit=5&offset=5&api_key=...secret...&location=unspecified",
                pathname: "/api/v1.0/feed/global/global/",
                path: "/api/v1.0/feed/global/global/?limit=5&offset=5&api_key=...secret...&location=unspecified",
                href: "https://api.getstream.io/api/v1.0/feed/global/global/?limit=5&offset=5&api_key=...secret...&location=unspecified"
            },
            method: "GET",
            headers: {
                stream - auth - type: "jwt",
                Authorization: "...secret...",
                ["X-Stream-Client"]: "stream-javascript-client-browser-unknown",
                accept: "application/json"
            }
        }
    }
}

有什么建议我可以在这里试试吗?

1 个答案:

答案 0 :(得分:0)

这是GetStream/stream-js#99描述的一个错误,刚刚由getstream.io团队修复过。

@JelteF:

  

我发现了问题。 Meteor有自己的浏览器后备功能   请求具有withCredentials的不同默认值的lib。这个   覆盖我之前提到的请求浏览器库。 PR#100   应该通过明确设置withCredentials来解决这个问题。

...

  

我将它合并为master,你可以暂时使用install,直到它被释放。

谢谢大家的辛勤工作!