mirror of
https://github.com/sasjs/core.git
synced 2026-01-20 06:50:06 +00:00
feat(*): recreate library as scoped package
This commit is contained in:
24
viya/mv_getapptoken.sas
Normal file
24
viya/mv_getapptoken.sas
Normal file
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
@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;
|
||||
Reference in New Issue
Block a user