我正在一个项目中,我必须使用AT命令在GSM调制解调器中发送和接收SMS。从SIM卡中读取短信。我已经尝试过以下代码,希望获得实际的SMS。但是我只是得到响应“ OK”,是否有适当的方法来做到这一点?
function start() {
// 2. Initialize the JavaScript client library.
gapi.client.init({
'apiKey': 'XXXXXX',
// clientId and scope are optional if auth is not required.
}).then(function() {
return gapi.client.request({
'path': 'https://www.googleapis.com/analytics/v3/data/realtime?ids=ga%3A185730557&metrics=rt%3AactiveUsers&fields=totalsForAllResults',
})
}).then(function(response) {
console.log(response.result);
}, function(reason) {
console.dir(reason);
console.log('Error: ' + reason.result.error.message);
});
};
gapi.load('client', start);
</script>