在微信公眾號開發的中,獲取用戶位置信息是非常常見的功能需求,通過用戶的位置信息,可以做一些地圖導航,以及基於LBS的營銷活動。
下面將介紹微信服務號獲取用戶位置信息的原理與步驟。
<xml><ToUserName><![CDATA[gh_public_member_account]]></ToUserName> <FromUserName><![CDATA[oNEGGwGfl8f5xMEqVHToL63LDL40]]></FromUserName> <CreateTime>1444035882</CreateTime> <MsgType><![CDATA[event]]></MsgType> <Event><![CDATA[LOCATION]]></Event> <Latitude>28.701618</Latitude> <Longitude>115.818817</Longitude> <Precision>30.000000</Precision> </xml>
參數說明:
只有通過認證的服務號,才能夠獲取訪問微信高級服務的權限。
開發者中心 -> 獲取用戶地理位置
微信服務器將會把用戶與微信之間的交互事件消息,通過此接口推送給SP服務器。
將xml消息轉化為php數組,然後取出經緯度信息,以備使用。
$content = file_get_contents ( 'php://input' ); $data = new \SimpleXMLElement ( $content ); foreach ( $data as $key => $value ) { $this->data [$key] = strval ( $value ); } // to use data["longitude"]; data["latitude"].
LOCATION位置信息微信開發