gpt4 book ai didi

android - 使用Git REPO实现Android EventSource https ://github. com/streamdataio/eventsource-android/private onConnect错误

转载 作者:行者123 更新时间:2023-11-30 01:33:26 26 4
gpt4 key购买 nike

我正在使用 https://github.com/streamdataio/eventsource-android/ 的 EventSource REPO我创建了一个 onConnect ();方法,但是,eventsource.connect();方法带有红色下划线并表示我无法访问它,因为它是私有(private)的?我在网上看了看,每个人都使用这个 REPO 没有问题这里发生了什么?

 private void connect() {
// Create headers: Add the streamdata.io app token
Map<String, String> headers = new HashMap<String, String>();
headers.put("X-Sd-Token", streamdataioAppToken);

// Create the EventSource with API URL & Streamdata.io authentication token
try {
eventSource = new EventSource(new URI(streamdataioProxyPrefix), new URI(myApiUrl), new SSEHandler(), headers);
} catch (URISyntaxException e) {
e.printStackTrace();
}

// Start data receiving
eventSource.connect();

}

最佳答案

我是来自 streamdata.io 的 Lorie。感谢您查看我们的示例项目。事实上,您是第一个报告此类问题的用户。您提供的代码似乎没有任何问题。请确保您的 eventSource 对象在您的代码中早先声明为 EventSource 类型,并且您导入了正确的 EventSource 类:tylerjroach.com.eventsource_android.EventSource;如果您仍然遇到此问题,我建议您将代码放在 GitHub 公共(public)存储库中并将链接发送给我们,以便我们帮助您解决此问题。

关于android - 使用Git REPO实现Android EventSource https ://github. com/streamdataio/eventsource-android/private onConnect错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35440505/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com