我为三星 S3 Gear创建了一个示例Tizen原生健康应用程序,并安装在 Gear 设备中并运行它。
如何将数据从 Gear 获取到 Mobile,下一步该怎么做?
下面是我测试的示例本机应用程序链接。 https://developer.tizen.org/ko/community/tip-tech/accessing-heart-rate-monitor-hrm-sensor-data-native-applications?langredirect=1
我为三星 S3 Gear创建了一个示例Tizen原生健康应用程序,并安装在 Gear 设备中并运行它。
如何将数据从 Gear 获取到 Mobile,下一步该怎么做?
下面是我测试的示例本机应用程序链接。 https://developer.tizen.org/ko/community/tip-tech/accessing-heart-rate-monitor-hrm-sensor-data-native-applications?langredirect=1
您还可以使用以下代码将数据从三星可穿戴 Gear Sport 直接发送到云端:
function sendData() {
var xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = function() {
if (xmlHttp.readyState == 4) {
console.log('done');
if (xmlHttp.status == 200) {
alert("data send successfully!");
} else {
alert("failed to send data!");
}
}
}
xmlHttp.open("POST", API_URL);
xmlHttp.setRequestHeader("Content-Type", "application/json");
var data = {
"key" : "foo",
"value": "bar",
"timestamp": 123
};
xmlHttp.send(JSON.stringify(data));
}
然后你可以sendData()
像这样调用函数:
window.onload = function() {
var API_URL = "https://foobar.foo/endpoint"
sendData();
}
我在这篇相关文章中与示例应用程序共享了一个解决方案。详情请查看:
如何将三星 Gear Steps 集成到 Android 应用程序中?
您必须使用附件 SDK。上面的这个示例由 Tizen Web 应用程序组成,在您的情况下,您需要 Native。您会在附件 SDK 包上找到本机示例/模板。