Production Ready Macros for SAS Application Developers
https://github.com/sasjs/core
mv_getapptoken.sas
Go to the documentation of this file.
1
/**
2
@file
3
@brief deprecated - replaced by mv_registerclient.sas
4
5
@version VIYA V.03.04
6
@author Allan Bowe, source: https://github.com/sasjs/core
7
8
<h4> SAS Macros </h4>
9
@li mv_registerclient.sas
10
11
**/
12
13
%macro mv_getapptoken(client_id=someclient
14
,client_secret=somesecret
15
,grant_type=authorization_code
16
);
17
18
%mv_registerclient(client_id=&client_id
19
,client_secret=&client_secret
20
,grant_type=&grant_type
21
)
22
23
%mend;
viya
mv_getapptoken.sas
Generated by
1.8.18
For more information visit the
Macro Core library
.