aboutsummaryrefslogtreecommitdiff
path: root/vnext/server/hms.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/server/hms.js')
-rw-r--r--vnext/server/hms.js33
1 files changed, 18 insertions, 15 deletions
diff --git a/vnext/server/hms.js b/vnext/server/hms.js
index e9068c58..1f897cef 100644
--- a/vnext/server/hms.js
+++ b/vnext/server/hms.js
@@ -3,23 +3,26 @@ import config from 'config';
import debug from 'debug';
var log = debug('hms');
-const { client_id, client_secret } = config.get('service.hms');
+const { client_id, client_secret } = config.has('service.hms') ? config.get('service.hms') : {};
const refreshToken = async () => {
- const params = new URLSearchParams();
- params.append('grant_type', 'client_credentials');
- params.append('client_id', client_id);
- params.append('client_secret', client_secret);
- const res = await axios.post('https://oauth-login.cloud.huawei.com/oauth2/v3/token', params).catch(console.log);
- try {
- log(`HMS response: ${JSON.stringify(res.data)}`);
- const access = res.data;
- log(`HMS access token: ${access.access_token}`);
- return access.access_token;
- } catch (error) {
- log(error);
- return '';
+ if (client_id) {
+ const params = new URLSearchParams();
+ params.append('grant_type', 'client_credentials');
+ params.append('client_id', client_id);
+ params.append('client_secret', client_secret);
+ const res = await axios.post('https://oauth-login.cloud.huawei.com/oauth2/v3/token', params).catch(console.log);
+ try {
+ log(`HMS response: ${JSON.stringify(res.data)}`);
+ const access = res.data;
+ log(`HMS access token: ${access.access_token}`);
+ return access.access_token;
+ } catch (error) {
+ log(error);
+ return '';
+ }
}
+ return '';
};
export const send = async (msg, tokenList = []) => {
@@ -36,7 +39,7 @@ export const send = async (msg, tokenList = []) => {
'android': {
'fast_app_target': 2
},
- 'data': {
+ 'data': {
'pushtype': 1,
'pushbody': {
'custom': {