{ "id": "88402", "key": "TIMOB-8165", "fields": { "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [ { "id": "12593", "name": "Release 2.0.0", "archived": false, "released": true, "releaseDate": "2012-03-30" }, { "id": "13170", "name": "Sprint 2012-06", "archived": true, "released": true, "releaseDate": "2012-03-25" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2012-03-21T15:24:39.000+0000", "created": "2012-03-21T13:59:47.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [ "mw-list" ], "versions": [ { "id": "12593", "name": "Release 2.0.0", "archived": false, "released": true, "releaseDate": "2012-03-30" } ], "issuelinks": [], "assignee": { "name": "cbarber", "key": "cbarber", "displayName": "Chris Barber", "active": true, "timeZone": "America/Chicago" }, "updated": "2017-03-14T18:12:05.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "11500", "name": "MobileWeb", "description": "Mobile Web (HTML) Platform" } ], "description": "Affects 2.0.0.v20120321134756\r\n\r\nh2. Problem\r\n\r\nAs the title states, I can get {{Ti.Geolocation.forwardGeocoder()}} to work under no circumstances on any platforms. All errors indicate \"Not Found\". This does not mean that the specified location cannot be found, as I've tried many. I believe that it is occurring because the underlying URL seems to be looking for\r\n\r\n{code}\r\napi.appcelerator.com\r\n{code}\r\n\r\nwhen it should be looking for\r\n\r\n{code}\r\napi.appcelerator.net\r\n{code}\r\n\r\nh2. Test Case\r\n\r\nThis will give \"not Found\" errors on all platforms\r\n\r\n{code}\r\nvar win = Ti.UI.createWindow({\r\n\tbackgroundColor: '#fff',\r\n\tfullscreen: false,\r\n\texitOnClose: true\r\n});\r\n\r\nTi.Geolocation.forwardGeocoder('Paris, France', function(e) {\r\n\tif (Ti.Platform.osname === 'mobileweb') {\r\n\t\tconsole.log(e);\r\n\t} else {\r\n\t\tTi.API.info(e);\r\n\t}\r\n});\r\n\r\nwin.open();\r\n{code}\r\n\r\nh2. Proposed Solution\r\n\r\nmake the service use the domain {{api.appcelerator.net}}, not {{api.appcelerator.com}}\r\n", "attachment": [], "flagged": false, "summary": "MobileWeb: Ti.Geolocation.forwardGeocoder() not working", "creator": { "name": "tlukasavage", "key": "tlukasavage", "displayName": "Tony Lukasavage", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "tlukasavage", "key": "tlukasavage", "displayName": "Tony Lukasavage", "active": true, "timeZone": "America/Los_Angeles" }, "environment": null, "comment": { "comments": [ { "id": "187832", "author": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "body": "We need to change api.appcelerator.com to api.appcelerator.net.", "updateAuthor": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-03-21T15:03:25.000+0000", "updated": "2012-03-21T15:03:25.000+0000" }, { "id": "187840", "author": { "name": "tlukasavage", "key": "tlukasavage", "displayName": "Tony Lukasavage", "active": true, "timeZone": "America/Los_Angeles" }, "body": "I see this was changed to Mobilweb, but just to be clear, it seems to affect all platforms. For some reason {{\\*.appcelerator.com}} now redirects to {{\\*.appcelerator.org}}. Is this perhaps the source of this problem, and perhaps others?", "updateAuthor": { "name": "tlukasavage", "key": "tlukasavage", "displayName": "Tony Lukasavage", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-03-21T15:13:13.000+0000", "updated": "2012-03-21T15:13:32.000+0000" }, { "id": "187842", "author": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "body": "We have scanned the code and we use \"api.appcelerator.net\" in both iOS and Android platforms.", "updateAuthor": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-03-21T15:15:08.000+0000", "updated": "2012-03-21T15:15:08.000+0000" }, { "id": "187846", "author": { "name": "bhughes", "key": "bhughes", "displayName": "Bryan Hughes", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Pull Request: https://github.com/appcelerator/titanium_mobile/pull/1785", "updateAuthor": { "name": "bhughes", "key": "bhughes", "displayName": "Bryan Hughes", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-03-21T15:24:15.000+0000", "updated": "2012-03-21T15:24:15.000+0000" }, { "id": "187848", "author": { "name": "bhughes", "key": "bhughes", "displayName": "Bryan Hughes", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Side Note: Ti.API.log works on mobile web, no need to case it out.", "updateAuthor": { "name": "bhughes", "key": "bhughes", "displayName": "Bryan Hughes", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-03-21T15:25:06.000+0000", "updated": "2012-03-21T15:25:06.000+0000" }, { "id": "412132", "author": { "name": "lmorris", "key": "lmorris", "displayName": "Lee Morris", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Closing ticket as fixed.", "updateAuthor": { "name": "lmorris", "key": "lmorris", "displayName": "Lee Morris", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2017-03-14T18:12:05.000+0000", "updated": "2017-03-14T18:12:05.000+0000" } ], "maxResults": 6, "total": 6, "startAt": 0 } } }