Changeset 6897 in josm for trunk/src/org/openstreetmap/josm/data/oauth
- Timestamp:
- 2014-03-05T18:37:26+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/oauth/OAuthParameters.java
r6883 r6897 32 32 * The default OSM OAuth request token URL. 33 33 */ 34 public static final String DEFAULT_REQUEST_TOKEN_URL = Main. OSM_WEBSITE+ "/oauth/request_token";34 public static final String DEFAULT_REQUEST_TOKEN_URL = Main.getOSMWebsite() + "/oauth/request_token"; 35 35 /** 36 36 * The default OSM OAuth access token URL. 37 37 */ 38 public static final String DEFAULT_ACCESS_TOKEN_URL = Main. OSM_WEBSITE+ "/oauth/access_token";38 public static final String DEFAULT_ACCESS_TOKEN_URL = Main.getOSMWebsite() + "/oauth/access_token"; 39 39 /** 40 40 * The default OSM OAuth authorize URL. 41 41 */ 42 public static final String DEFAULT_AUTHORISE_URL = Main. OSM_WEBSITE+ "/oauth/authorize";42 public static final String DEFAULT_AUTHORISE_URL = Main.getOSMWebsite() + "/oauth/authorize"; 43 43 44 44
Note:
See TracChangeset
for help on using the changeset viewer.