ilink-world/webservice/IlinkConstants.js

29 lines
1.3 KiB
JavaScript
Raw Normal View History

2020-03-12 15:14:51 +00:00
export const isDebugMode = false
2019-06-16 13:09:54 +00:00
//base url test
//const baseUrl = "https://ilink-app.com/mobilebackendbeta"
2019-06-16 13:09:54 +00:00
//base url production
2020-04-17 22:03:04 +00:00
export const baseUrl = "https://ilink-app.com/mobilebackend";
export const testBaseUrl = "https://test.ilink-app.com";
2019-06-16 13:09:54 +00:00
//base url agent
//const baseUrl = "https://ilink-app.com/mobilebackendtest2"
2019-06-16 13:09:54 +00:00
//base url agent test
2020-03-20 18:28:22 +00:00
//const baseUrl = "https://ilink-app.com/mobilebackendtest"
//
2020-03-12 15:14:51 +00:00
export const adhesionUrl = baseUrl + '/interacted/LoginAction.php';
export const memberActionUrl = baseUrl + '/interacted/MembersAction.php';
export const networkActionUrl = baseUrl + '/interacted/NetworkAction.php';
export const locationActionUrl = baseUrl + '/interacted/LocationAction.php';
export const demandeActionUrl = baseUrl + '/interacted/DemandeAction.php';
2020-04-18 19:59:05 +00:00
export const configActionUrl = baseUrl + '/interacted/ConfigAction.php';
export const walletActionUrl = testBaseUrl + '/walletService/wallets';
export const authKeyUrl = testBaseUrl + '/oauth/token';
export const videoUrl = "https://www.youtube.com/watch?v=wwGPDPsSLWY";
export const MARKER_URL = baseUrl + "/interacted/LocationAction.php";
export const authKeyData = {
"grant_type": "client_credentials",
"client_id": "3",
"client_secret": "E3jAPczLLGvQu87ulQqKB5yM7BXXQUwpL68CPBXe"
};