Hi guys! I've tried to use proc http to call sas decision. It works well, but right now I need to specify access token myself. That means whenever the token gets changed, I need to edit my code. So the question is how can I retrieve the token from sas?
I generated sas token from the following link : https://blogs.sas.com/content/sgf/2023/02/07/authentication-to-sas-viya/
My code right now:
proc http
METHOD="POST"
url="mysasdecisionurl"
in='{"inputs":[]}'
ct = "applicationvnd.sas.microanalytic.module.step.input+json"
out=resp
oauth_bearer = sas_services;
headers 'Authorization'= "My token";
run;
I found some solution from this link : https://communities.sas.com/t5/SAS-Programming/How-to-use-PROC-HTTP-with-OAUTH-to-get-an-access-toke...
But it seems every time the code is executed, a new token will be generated. I just want to retrieve an old token, not to generate a new token.
I'm also having the same problem. I would like to know how to use the authentication token that the user made to access SASStudio itself.
In other words, being able to authenticate to the Viya APIs with the user's own credentials logged into SAS Studio.
If you don't want users to put token every time they want to access sas product like me, in my case I use this code :
filename resp "your json file";
%let url = %nrstr("your publish sas product");
/*$one_json is your input*/
%let one_json = '{"inputs":[{"name": " ", "value": " "},{"name": " ", "value":" "}]}';
proc http
url = &url.
in = &one_json.
out = resp
method = post
oauth_bearer = sas_services
ct = "application/vnd.sas.microanalytic.module.step.input+json";
run;
/* read json and create it as a library named logdata */
libname logdata json "your json file";
Or you can see my other blog: (https://communities.sas.com/t5/SAS-Programming/how-to-get-sas-access-token-in-proc-http/m-p/888299#M... ). There is solution from DavidHD that might help you.
Hope it helps 🙂
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.