我们愿意使用Orange M2M API(内部代号Malima)来获取有关我们3G对象的信息。该API运作良好,但是,我在访问某些信息时遇到了麻烦:
我尝试过: -将设备信息端点与getSimReport请求一起使用。未返回文档中的大多数有用字段(ip,sessionTime和geolocation部分)。以下是回应摘录:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<t:trackingHeader xmlns:t="http://www.francetelecom.com/iosw/v1" xmlns:date="http://exslt.org/dates-and-times" xmlns:str="http://exslt.org/strings" xmlns:regExp="http://exslt.org/regular-expressions">
<t:requestId>b2efad8b-3a8d-4558-8524-dad69408ff28</t:requestId>
<t:timestamp>2019-07-04T15:07:19+02:00</t:timestamp>
</t:trackingHeader>
</soap:Header>
<soap:Body>
<ns3:getSimReportResponse xmlns:ns2="http://deviceInfo.types.malima.francetelecom.com" xmlns:ns3="http://webservice.malima.francetelecom.com/v1" xmlns="http://portalsecurity.malima.francetelecom.com">
<ns2:globalProcessingStatus>TERMINATED</ns2:globalProcessingStatus>
<ns2:line>
<ns2:inputLineIdentifier>
<ns2:deviceImei>867444037638196</ns2:deviceImei>
</ns2:inputLineIdentifier>
<ns2:processingStatus>TERMINATED</ns2:processingStatus>
<ns2:updateDate>2019-07-04T15:05:50.200+02:00</ns2:updateDate>
<ns2:supervision>
<ns2:connectivity>true</ns2:connectivity>
<ns2:lastKnownIdentity>
<ns2:imei>867444037638196</ns2:imei>
<ns2:timeStamp>2019-05-15T13:39:55+02:00</ns2:timeStamp>
</ns2:lastKnownIdentity>
</ns2:supervision>
</ns2:line>
</ns3:getSimReportResponse>
</soap:Body>
</soap:Envelope>
那边有什么我想念的吗?缺少字段可能是由于访问API时权限不足引起的吗? 谢谢您的帮助, -埃里克