https://platform.here.com/ https://developer.here.com/documentation/migrate-to-platform/dev_guide/topics/after-migrating.html Mary Shaver Org ID: org135477914 Roles: Org admin Email: mclouthnews@gmail.com 1bledsoe1 User ID: HERE-41ef445c-0c99-4262-8b27-613726f7d292 Access key ID: EZTwZ9_7o0dAR-h5tPvwhw Access key secret: 9GyW9uYVoX2TAP_iJs0ynzvJJ5i3x0cUTVqqmL3b7XbcWy6Gjr5Clv-KxHQ5uAIUpTVL-6msQGl-dPV-Lhi-Mw Organisation ID org135477914 APP NAME APP ID Freemium 2019-08-01 JavaScript sKM9dR3EHocPGZIi4nzl Access key ID: fmIVXsqFEIJtxb42ssRJpg Access key secret: 4ovTVQ4FX2j14VH3NglMHNyAigqSxJunWfDL_nkF0-Ny8lr6yB4HRRpS-VjvdTn6eKaIEgLR8_IbbLF9qHbtWg Freemium 2019-08-01 REST hV1tzbx5cU4Ug6XLrMSE Access key ID: QleKcxlEhFwWsfVrc1dsoQ Access key secret: WbUnxohr-8HpRMalAYIfZUpVCq3gnmi-oTftWhZndDXnS5IwAlIBpKTCWy-itP7sADZC4HjgD2A2JF2C2ux1tQ weather 0eqdtt7yuPoOi4DA3zsD apikey: Ypyl7fPZ7A-BfZa8EeVvt1WbTchPqamdJe1GvtA6Ut4 ACCESS KEY ID EZTwZ9_7o0dAR-h5tPvwhw 39.19419, -95.20891 https://platform.here.com/admin/apps -------------------------------- https://geocoder.api.here.com/search/6.2/geocode.json ?languages=en-US &maxresults=4 &searchtext=Sunnyvale &app_id={YOUR_APP_ID} &app_code={YOUR_APP_CODE} -------------------------------- https://weather.cc.api.here.com/weather/1.0/report.json ?product=observation &name=Berlin-Tegel &apiKey=Ypyl7fPZ7A-BfZa8EeVvt1WbTchPqamdJe1GvtA6Ut4 https://weather.cc.api.here.com/weather/1.0/report.json ?product=forecast_7days_simple &latitude=41.83&longitude=-87.68 -H "Authorization: Bearer {YOUR_TOKEN}" curl https://weather.cc.api.here.com/weather/1.0/report.json ?product=nws_alerts &name=Lufkin,TX -H "Authorization: Bearer {YOUR_TOKEN}" curl GET https://weather.cc.api.here.com/weather/1.0/report.json ?product=observation &name=Berlin-Tegel &jsoncallback=myCallbackFunction -H "Authorization: Bearer {YOUR_TOKEN}" -------------------------------- GET https://discover.search.hereapi.com/v1/ discover ?at=39.19419,-95.20891 &limit=2 &lang=en &q=Obi+Hamburg &apiKey={YOUR_API_KEY} ------------------------------ GET https://discover.search.hereapi.com/v1/discover?at=42.36346,-71.05444&limit=10&q=restaurant&in=countryCode:USA&apiKey=Ypyl7fPZ7A-BfZa8EeVvt1WbTchPqamdJe1GvtA6Ut4 ------------------------------ https://geocode.search.hereapi.com/v1/geocode ------------------------------ https://developer.here.com/documentation/geocoding-search-api/dev_guide/topics-places/food-types-category-system-full.html https://developer.here.com/documentation/geocoding-search-api/dev_guide/topics-places/places-category-system-full.html ------------------------------ ------------------------------ https://ipinfo.io/account/token mclouthnews@gmail.com 1bledsoe1 69093530c1da58 is your access token fetch("https://ipinfo.io/json?token=69093530c1da58").then( (response) => response.json() ).then( (jsonResponse) => console.log(jsonResponse.ip, jsonResponse.country) ) Request visitor data using Fetch API (Async/Await) const request = await fetch("https://ipinfo.io/json?token=69093530c1da58") const jsonResponse = await request.json() console.log(jsonResponse.ip, jsonResponse.country) ------------------------------ { "ip": "174.213.192.106", "hostname": "106.sub-174-213-192.myvzw.com", "city": "Minneapolis", "region": "Minnesota", "country": "US", "loc": "44.9800,-93.2638", "org": "AS22394 Verizon Business", "postal": "55401", "timezone": "America/Chicago" }