It was successful to construct one line URL for the HERE MAPS reverse positing line the following example
https://reverse.geocoder.ls.hereapi.com/6.2/reversegeocode.json?apiKey=”API_Key”&mode=retrieveAddresses&prox=30.2509399,29.6754403,250
But while trying to get Wlan geo location work, I am facing a problem and need your help, I read the guide for Wlan geo location in the following page
I tried to construct one line URL from the following data which mentioned in the WLAN geo location Guide
https://pos.ls.hereapi.com/positioning/v1/locate?apiKey={YOUR_API_KEY}
{ "wlan": [ {"mac": "8C-1A-BF-20-66-AD"}, {"mac": "A0-E4-53-E9-66-A7"}, {"mac": "AC-4B-C8-34-F7-01"}, {"mac": "A0-21-95-57-79-06"}, {"mac": "00-18-56-51-54-FB"}, {"mac": "10-30-47-D2-54-55"}, {"mac": "B8-6B-23-09-87-B1"}, {"mac": "F4-55-95-11-2C-C1"} ]}
The URL line I got is as follow , but when I send it troughs my browser I got the following error
https://pos.ls.hereapi.com/positioning/v1/locate?apiKey=”API_Key”,headers='Content-type':'application/json',data="wlan": [\n{"mac": "8C-1A-BF-20-66-AD"},\n{"mac": "A0-E4-53-E9-66-A7"},\n{"mac": "AC-4B-C8-34-F7-01"},\n{"mac": "A0-21-95-57-79-06"},\n{"mac": "00-18-56-51-54-FB"},\n{"mac": "10-30-47-D2-54-55"},\n{"mac": "B8-6B-23-09-87-B1"},\n{"mac": "F4-55-95-11-2C-C1"}\n]
error output
{"error":{"code":405,"message":"Method Not Allowed","description":"Only HTTP POST method supported"}}
```