1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-10 02:40:05 +00:00
Files
core/viya/mv_getapptoken.sas
2020-07-07 21:27:24 +01:00

24 lines
462 B
SAS

/**
@file
@brief deprecated - replaced by mv_registerclient.sas
@version VIYA V.03.04
@author Allan Bowe
@source https://github.com/macropeople/macrocore
<h4> Dependencies </h4>
@li mv_registerclient.sas
**/
%macro mv_getapptoken(client_id=someclient
,client_secret=somesecret
,grant_type=authorization_code
);
%mv_registerclient(client_id=&client_id
,client_secret=&client_secret
,grant_type=&grant_type
)
%mend;